I have a JSP web application project StudentApp and I configured in my server.xml as follows
<
Host name="test.com" appBase="D:/StudentApp"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">
Context path="" reloadable="true" crossContext="true" >
/Context>
/Host>
When I started my application it is running fine. I have kept some folders in D:/StudentApp
like properties,ROOT,svn and I can access all folders from my site.
For example I can access like test.com/properties etc..if I give this path correctly.
I want to restrict only with ROOT folder..Have anybody came across with same type of issue? How can I make this?