ITEEDU

tomcat如何添加默认访问页面

修改文件web.xml,在welcome-list里面添加默认的访问页面

<welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
</welcome-file-list>