Thomas Rohde wrote:

That is a good point. I will change my configuration to

   JkMount /myApplication/* tomcat

Actually, you need 2 lines to cover all :

>    JkMount /myApplication tomcat          # for the index ?
>    JkMount /myApplication/* tomcat        # for the rest

Or you can use the following syntax :

<Location /myApplication>
  SetHandler jakarta-servlet
  ...
</Location>

I personally like this second form better : it fits better with the general Apache httpd configuration style, and it allows for other httpd-level things in the same section.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to