Hello

I've got apache 2 with jk2 fronting tomcat 5.0.28.
I want to forward all http requests to tomcat, except from static files such as jpg, png etc.

This is what I've tried but it doesn't seem to work.

<LocationMatch "^/(?!(*.js|*.png|*.jpg|*.bmp|*.gif|*.ico|*.swf|*.xml|*.pdf|*.doc|*.xls|*.zip|*.txt))">
 JkUriSet worker ajp13:localhost:8009
</LocationMatch>


Right now I use the following:
<Location "/*">
 JkUriSet worker ajp13:localhost:8009
</Location>

which is not what I want because it forwards everything to tomcat.

Any ideas?
thanks

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to