On 10/31/05, Brian Bonner <[EMAIL PROTECTED]> wrote:
> I'm using ProxyPass and ProxyPassReverse to delegate requests from
> Apache 2.0.55 to Tomcat 5.0.30.
>
> Here's what I have:
>
> ProxyPass         /  http://192.168.1.15:8082/internal/
> ProxyPassReverse  /  http://192.168.1.15:8082/finternal/
>
> This works fine, however I also want to add a Redirection for a few
> URLs that used to exist on the old site into the new one.
>
> I tried doing this by adding:
>
> RedirectMatch ^/grant/evaluation$ /resources/evaluation.html
> RedirectMatch ^/emp/int.xyz(.*)$ /employee
>
> The configuration tests ok, but when I try /grant/evaluation, I get an
> error from Tomcat that the url:  /internal/grant/evaluation can't be
> found.

BEFORE the existing ProxyPass directive, add
ProxyPass /grant/evalution !
ProxyPass /emp/int.xyz !

Joshua

---------------------------------------------------------------------
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