在tomcat中如何才能屏蔽掉index页
发布网友
发布时间:2022-05-26 20:35
我来回答
共4个回答
热心网友
时间:2023-10-27 04:26
修改web.xml
添加内容,
<welcome-file-list>
<welcome-file>a.html</welcome-file>
<welcome-file>b.html</welcome-file>
<welcome-file>c.jsp</welcome-file>
</welcome-file-list>
如此以后,输入loaclhost/工程名的时候,就会先去找a.html,如果没找到就去找b.html...依此类推.
热心网友
时间:2023-10-27 04:26
web.xml中删除如下:
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
不过有两个web.xml
一个是你自己工程的
一个是tomcat conf下的,这个是tomcat的配置。
不过建议还是改一下index.jsp的名字
热心网友
时间:2023-10-27 04:27
web.xml中删除如下:
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
热心网友
时间:2023-10-27 04:27
web.xml里面有个配置删了就是了