[EMAIL PROTECTED] Re: Redirect and ProxyPass or RewriteRule[P]

2005-10-31 Thread Brian Bonner
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

[EMAIL PROTECTED] Re: Redirect and ProxyPass or RewriteRule[P]

2005-10-31 Thread Brian Bonner
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 ^/(*.)$

[EMAIL PROTECTED] Re: Redirect and ProxyPass or RewriteRule[P]

2005-10-31 Thread Brian Bonner
I spoke to soon. I really need a redirect to occur :( The url is staying the same in the browser and is not being rewritten but proxied directly. I need the URL to change in the browser as well as the url that is being sent to Tomcat. Any ideas on how to accomplish this. If I just remove the