java - Tomcat/Apache Redirect for different file extensions or web directories -


Is it possible to create a path for a file to type files and files to render files outside of Apache ?

I have Java based CMS (Lifera) running on my Ubuntu server running with Tomcat 6 and Apache 2 ... but I also have many PHP applications that also need to run away ... what's the way to run PHP files and my Java CMS on the same server?

Yes, this is a normal setup. How do you do that how you install Apache with a tomcat (mod_jk, mod_proxy are many ways to do this), but the basic idea is that the Apache server sits in front of Tomcat and only one forward for the Tomcat requests is configured.

For example, Apache handles everything on the tomcat under the bottom

More info to get started:


Comments