I deployed my application in Tomcat and the application path is:
http://localhost:8080/myapp
but I want to restrict my users to not see Tomcat home page i.e. if they enter:
http://localhost:8080
the home page shouldn’t appear. What should I do?
refer How to Change Default Homepage in Tomcat
EDIT:
link is broked so you can try following:
The easiest would be to have the Tomcat home page (TOMCAT_HOME/webapps/ROOT/index.jsp) perform a redirect to your start page.
Or, if you have just a single web app, you can move that to the ROOT web app.