And actually , I forgot the $1 at the end of the last rewrite rule, it
should have been:
RewriteRule ^/grant/evaluation$
http://192.168.1.15:8082/internal/resources/evaluation.html [P]
RewriteRule ^/emp/int.xyz(.*)$ http://192.168.1.15:8082/internal/employee [P]
RewriteRule ^/(*.)$ http://192.168.1.15:8082/internal/$1 [P]

Thanks.

On 10/31/05, Brian Bonner <[EMAIL PROTECTED]> wrote:
> It looks like:  Rewrite will do the trick:
>
> RewriteRule ^/grant/evaluation$
> http://192.168.1.15:8082/internal/resources/evaluation.html [P]
> RewriteRule ^/emp/int.xyz(.*)$ http://192.168.1.15:8082/internal/employee [P]
> RewriteRule ^/(*.)$ http://192.168.1.15:8082/internal [P]
>
> If anyone has any caveats or comments about this approach, please let
> me know.  Thanks.
>
> Brian
>
> 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.
> >
> > It looks like the Redirect is not even being handled.
> >
> > I'm wondering if there was a way to to use RewriteRule fo handle the
> > redirection and proxying of these requests.  I see that there is a way
> > to use a [P], but if I use this do I still need to use the ProxyPass?
> > How do I handle the ProxyPassReverse?
> >
> > Thanks,
> >
> > Brian
> >
>

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