>try with redirect (and VirtualHost if needed)
>
>ServerName our.domain.com:10080
>RedirectPermanent / http://another.machine.com:8080
>
We are trying to do the samething with apache 2.2.3 on SLES10 SP1. I have
config'ed a vhost.conf, like so:
ServerAdmin [EMAIL PROTECTED]
Server
try with redirect (and VirtualHost if needed)
ServerName our.domain.com:10080
RedirectPermanent / http://another.machine.com:8080
Or with Rewrite
RewriteEngine On
RewriteCond %{HTTP_HOST} our.domain.com [NC]*
*RewriteRule /(.*) http://another.machine.com:8080/$1 [L,R=301]
--
Bj
On 9/6
Hello,
I have looked through the FAQ's and still cannot find the answer to what
has to be a simple question. I want to setup our instance of Apache
(Gentoo-based) to take all requests that come in on the URL
http://our.domain.com:10080 and redirect it to
http://another.machine.com:8080. I have l