先將這個檔案換名子或刪除
增加一支新的index.jsp內容為
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %> <% response.sendRedirect("/XXX"); return; %>在webapps\ROOT\WEB-INF\web.xml增加
<welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list>
修改完後,重起tomcat
在網址列上鍵入http://localhost:8080
將會自動轉址到http://localhost:8080/XXX