方法一:(適合對伺服器中單一站點的設定)
(d:demo為網站根目錄)
在Tomcat中,預設首頁為:index.html,index.htm,index.jsp
如果需要使用其他頁面作為預設主頁,則需要設定WEB-INF資料夾下的web.xml檔:
如上例中:
在D:demoWEB-INF資料夾中建立檔案web.xml:
內容如下:
<?xml version=”1.0″ encoding=”UTF-8″?>
<web-app version=”2.4″
xmlns=”http://java.sun.com/xml/ns/j2ee”
xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance”
xsi:schemaLocation=”http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd “>
<welcome-file-list>
<welcome-file>hello.jsp</welcome-file>
</welcome-file-list>
</web-app>
方法二:(以下設定將應用於該伺服器下所有的站點)建議使用開啟檔案conf/web.xml,找到這段程式碼:
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
在中間加入你想要的檔名即可。
如:我想讓hello.jsp成為預設首頁,我將上面那段程式碼改成:
<welcome-file-list>
<welcome-file>hello.jsp</welcome-file>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>