Is there a way to _exclude_ JkMounts?
I have a servlet that responds to the base directory; in web.xml I have <servlet-mapping> <servlet-name>sportpage</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> so all requests to this path should invoke the servlet ... unfortunately, I need to _exclude_ only images I have the following in mod_jk Alias /sports "/var/tomcat/webapps/sports" <Directory "/var/tomcat/webapps/sports"> Options Indexes FollowSymLinks </Directory> JkMount /sports/*./ ajp13 JkMount /sports/*.jsp ajp13 the "/sports/*./" was intended to allow /sports/hockey/lineups to invoke the servlet (that will then deal with the "hockey/lineups" path info) whereas /sports/images/nhl.gif should not involve Tomcat and be delivered by the apache server. Unfortunately, it doesn't work. Can I _exclude_ a pattern from JkMount? -- Gary Lawrence Murphy <[EMAIL PROTECTED]> TeleDynamics Communications Inc Business Innovations Through Open Source Systems: http://www.teledyn.com "Computers are useless. They can only give you answers."(Pablo Picasso) -- To unsubscribe: <mailto:[EMAIL PROTECTED]> For additional commands: <mailto:[EMAIL PROTECTED]> Troubles with the list: <mailto:[EMAIL PROTECTED]>