Redirect TOMCAT to home page.
Redirect TOMCAT to home page. Open webapp/ROOT/WEB-INF/web.xml , remove any servlet mapping with path /index.html or /index.jsp , and save. Remove webapp/ROOT/index.html , if it exists. Create the file webapp/ROOT/index.jsp with this line of content: <% response . sendRedirect ( "/some/where" ); %> or if you want to direct to a different server, <% response . sendRedirect ( "http://otherserver.example.com/some/where" ); %>