Re: [EMAIL PROTECTED] URL Redirection Question

2007-09-07 Thread Bj
try with redirect (and VirtualHost if needed) VirtualHost *:10080 ServerName our.domain.com:10080 RedirectPermanent / http://another.machine.com:8080 /VirtualHost Or with Rewrite RewriteEngine On RewriteCond %{HTTP_HOST} our.domain.com [NC]* *RewriteRule /(.*)

Re: [EMAIL PROTECTED] URL Redirection Question

2007-09-07 Thread Chris Arnold
try with redirect (and VirtualHost if needed) VirtualHost *:10080 ServerName our.domain.com:10080 RedirectPermanent / http://another.machine.com:8080 /VirtualHost We are trying to do the samething with apache 2.2.3 on SLES10 SP1. I have config'ed a vhost.conf, like so: VirtualHost *:8080

[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