Re: [EMAIL PROTECTED] mod_jk and mod_rewrite
You are rewriting /oasys/init --> /cwsoft/init Then JkMount /oasys/* tomcatserver doesn't apply because the url become: /cwsoft/init You need to change it to: JkMount /cwsoft/init/* tomcatserver Gabriel Jér
[EMAIL PROTECTED] mod_jk and mod_rewrite
Hello, I want to combine mod_jk and mod_rewrite in Apache to send a rewritten URL to Tomcat. Original URL : http://localhost/oasys/init Rewritten URL : http://localhost/cwsoft/init Since I want to forward the rewritten URL, I need to add the PT flag to the rewrite rule: Re