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 /(.*) http://another.machine.com:8080/$1 [L,R=301]

-- 
Bj

On 9/6/07, Jim Bierlein <[EMAIL PROTECTED]> wrote:
>
> 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 looked through the mod-proxy
> and the mod-rewrite and am just confusing myself more.
>
> Any help would be greatly appreciated.
>
> Thank you,
>
> Jim
>
>
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
>
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: [EMAIL PROTECTED]
>    "   from the digest: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

Reply via email to