tomcat默认首页的问题
发布网友
发布时间:2022-05-05 20:15
我来回答
共6个回答
热心网友
时间:2022-06-28 01:05
在你项目的web.xml中加上
<welcome-file-list>
<welcome-file>/index/index.html</welcome-file>
</welcome-file-list>
热心网友
时间:2022-06-28 01:06
在web.xml 中修改默认页。默认的是 index.jsp 你可以把它改成index/index.html 即可。
热心网友
时间:2022-06-28 01:06
WEB-INF文件夹下web.xml
修改
<welcome-file-list>
<welcome-file>/index/index.html</welcome-file>
</welcome-file-list>
热心网友
时间:2022-06-28 01:07
在你的项目里的web-inf下,修改web.xml文件
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
把index.jsp修改成/index/index.html
热心网友
时间:2022-06-28 01:07
在web.xml文件里面设置
<welcome-file-list>
<welcome-file>index/index.html</welcome-file>
</welcome-file-list>
试试看
热心网友
时间:2022-06-28 01:08
是你的当前工程下的web.xml文件中的路径配置有问题