Java主機(jī)如何設(shè)置默認(rèn)首頁(yè)文檔?
答:請(qǐng)?jiān)谛薷目臻g中/wwwroot/WEB-INF/web.xml文件!里面有設(shè)置默認(rèn)首頁(yè)文件設(shè)置:
<welcome-file-list>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
默認(rèn)index.htm , index.jsp 為默認(rèn)首頁(yè)文檔,可以自行添加,一行一個(gè)。