[us...@httpd] Apache Rewrite and JkMount

2010-04-26 Thread Philip Hunt (Straker Software)
Hi, I have the following Rewrite config, to pass requests through Apache to Tomcat using AJP: RewriteEngine on RewriteRule ^/abc - [L,PT] RewriteRule (.*) /abc$1 [L,PT] JkMount /abc/* node1 This works, to the point that requests to http://sitename/ are rewritten to http://sitename/abc ... and

Re: [us...@httpd] Apache Rewrite and JkMount

2010-04-26 Thread Julien Cigar
Philip Hunt (Straker Software) wrote: Hi, Hello, I have the following Rewrite config, to pass requests through Apache to Tomcat using AJP: RewriteEngine on RewriteRule ^/abc - [L,PT] RewriteRule (.*) /abc$1 [L,PT] JkMount /abc/* node1 just curious, why not using mod_proxy_ajp ? This