Redirect TOMCAT to home page.
Redirect TOMCAT to home page.
- Open
webapp/ROOT/WEB-INF/web.xml, remove any servlet mapping with path/index.htmlor/index.jsp, and save. - Remove
webapp/ROOT/index.html, if it exists. - Create the file
webapp/ROOT/index.jspwith 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"); %>
Nhận xét
Đăng nhận xét