You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Joshua Slive <js...@gmail.com> on 2005/11/01 02:21:16 UTC

Re: [users@httpd] Redirect and ProxyPass or RewriteRule[P]

On 10/31/05, Brian Bonner <bk...@gmail.com> 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: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Redirect and ProxyPass or RewriteRule[P]

Posted by Brian Bonner <bk...@gmail.com>.
Joshua, thank you.  That did the trick.  I appreciate your help resolving this.

On 10/31/05, Joshua Slive <js...@gmail.com> wrote:
> On 10/31/05, Brian Bonner <bk...@gmail.com> 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: users-unsubscribe@httpd.apache.org
>    "   from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>
>

---------------------------------------------------------------------
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: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org