Re: [EMAIL PROTECTED] URL Redirection Question

2007-09-07 Thread Chris Arnold
>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

Re: [EMAIL PROTECTED] URL Redirection Question

2007-09-07 Thread Bj
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

[EMAIL PROTECTED] URL Redirection Question

2007-09-06 Thread Jim Bierlein
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