Hi,
I'm interested in putting my web app in the root directory so that people
can get to it via http://x.com/index.html instead of
http://x.com/myapp/index.html
Whenever I change the server.xml file:
<Context path=""
docBase="webapps/myapp"
crossContext="true"
debug="0"
reloadable="true" >
</Context>
Some of my subdirectories are not found, http:/x.com/images/index.html and
also whenever I goto admin http://x.com/admin/ I get the Tomcat admin pages.
Does anyone know how to configure this correctly? Thanks in advance.