Re: Mixing Apache's mod_rewrite with mod_proxy

2007-04-18 Thread mraible
I got this working with mod_jk and the following configuration for mod_rewrite: RewriteEngine On # http://domain/?v=1 --> http://domain/app1/?v=1 RewriteCond %{QUERY_STRING} v=([^&]+) RewriteRule ^(.*)$ /app%1/$1 [L] # http://domain --> http://domain/app (default ROOT i

Re: Mixing Apache's mod_rewrite with mod_proxy

2007-04-18 Thread press
Hi Matt, See configuration below. I hope this helps you - Clay Test Cases for Requirement #1 http://www.domain.com/?v=1 -> http://www.domain.com/1 http://www.domain.com/?v=2 -> http://www.domain.com/2 Test Cases for Requi

Mixing Apache's mod_rewrite with mod_proxy

2007-04-16 Thread mraible
I want to configure Apache to front a Tomcat installation. I've done this in the past with mod_jk. I've got that setup and working. I also configured mod_proxy and got that working thanks to Graham King's excellent instructions[1]. I don't know which one is a better solution, but I have them both