Petr Hracek wrote: > Thank you for explanation for me. > > How can be handled ProxyPassReverse for case > ProxyPassMatch ^/XYtest/servlet/(.*)$ ajp://localhost:8009/XYtest/$1 > Is it enough to have ProxyPassReversy /XYtest/servlet > ajp://localhost:8009/XYtest/servlet With the above configuration, use ProxyPassReverse /XYtest/servlet ajp://localhost:8009/XYtest For more info : http://httpd.apache.org/docs/2.2/mod/mod_proxy.html#proxypassreverse When everything so far is working, then save that configuration, and I will give you a new and simpler configuration, below the line ----------------------- It is often easier to have all of the files of one application together, instead of in different directories. You just have to be careful that by doing so, you do not create a security hole. At this moment, you have the "Apache stuff" in /opt/test/htdocs and the "Tomcat stuff" in /opt/test/servlet If (*) the "Apache stuff" is only html pages, stylesheets, javascript libraries, images and so on, then you can put everything back together, and let it all be served by Tomcat. Tomcat can act as a "normal" HTTP server, just like Apache, and it can serve these files as well and as fast as Apache httpd. So, for example : 1) copy all that you have under /opt/test/htdocs/*, into /opt/test/servlet/* 2) delete /opt/test/htdocs/ 3) in the Apache configuration file, change the proxy instructions as follows : ProxyPass /XYtest ajp://localhost:8009/XYTest ProxyPassReverse /XYtest ajp://localhost:8009/XYTest 3) in your index.html, leave the src elements like this :