Configure Apache to forward dynamic page requests to Tomcat in friendly url scenarios - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T21:52:09Z http://stackoverflow.com/feeds/question/818403 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/818403/configure-apache-to-forward-dynamic-page-requests-to-tomcat-in-friendly-url-scena 1 Configure Apache to forward dynamic page requests to Tomcat in friendly url scenarios Kishnan 2009-05-04T00:22:15Z 2009-05-04T00:43:11Z <p>I have a website with friendly urls.</p> <p>I want all url´s that end with .htm, .gif, .jpg, .css, .js be served directly by the Apache web server and the rest passed on to Tomcat.</p> <p>examples of dynamic url´s that should be forwarded to Tomcat:</p> <pre><code>www.mysite.com/news/newsItem1 www.mysite.com/videos www.mysite.com/news/list.jsp </code></pre> <p>examples of static url´s on the same site that should be served by Apache:</p> <pre><code>www.mysite.com/news/newsItem2.htm www.mysite.com/image1.gif </code></pre> <p>Using the jk_module I figured out how to configure JkMount to forward extensions like .jsp to Tomcat... however what I am looking for is a not operator in the url so that I can specify something like: if url not ending with .htm or .gif or .jpg or .css or .js then forward to Tomcat.</p> <p>Any ideas as to how I can do this?</p> http://stackoverflow.com/questions/818403/configure-apache-to-forward-dynamic-page-requests-to-tomcat-in-friendly-url-scena/818428#818428 3 Answer by David for Configure Apache to forward dynamic page requests to Tomcat in friendly url scenarios David 2009-05-04T00:43:11Z 2009-05-04T00:43:11Z <p>Here's an example from the <a href="http://tomcat.apache.org/connectors-doc/webserver%5Fhowto/apache.html" rel="nofollow">mod_jk documentation</a>:</p> <pre> # All requests go to worker1 by default JkMount /* worker1 # Serve html, jpg and gif using httpd JkUnMount /*.html worker1 JkUnMount /*.jpg worker1 JkUnMount /*.gif worker1 </pre> <p>You can easily generalize it to your needs.</p>