2015-10-05 68 views

回答

0

在$ TOMCAT_HOME/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> 

默認的servlet嘗試加載索引。*文件按所列順序排列。您可以通過在$ TOMCAT_HOME/webapps/ROOT中創建index.html文件輕鬆覆蓋index.jsp文件。這個文件包含一個新的靜態主頁或者重定向到一個servlet的主頁是比較常見的。重定向將如下所示:

<html> 

<head> 
<meta http-equiv="refresh" content="0;URL=http://webaddress.com/some/path/to/servlet/homepage/"> 
</head> 

<body> 
</body> 

</html> 
相關問題