> I'm running tomcat 6 behind apache. > > I currently have an application deployed as "myApplication" and it is > available at "http://www.mydomain.com/myApplication". > > How can I make this application available at "http://www.mydomain.com" > without deploying it as ROOT.war? > > My server is running Ubuntu 10.04. > > Thanks! > > Dean Del Ponte >
You could use a rewrite rule to achieve that: RewriteEngine On RewriteRule ^/$ /myApplication/ [PT] JkMount /myApplication* tomcat Works for me very well. Thomas --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org