1.tomcat服务器首页配置
打开conf/web.xml。最后的代码发现默认配置的首页是index.html,index.htm,index.jsp
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
要是想改,不要直接在此文件下更改,而是修改独立的虚拟目录中的配置我设置的虚拟目录是D:\Java\Tomcat\VirtualServer\WEB-INF在虚拟目录下的web.xml文件添加代码
<welcome-file-list>
<welcome-file>main.html</welcome-file>
<welcome-file>main.htm</welcome-file>
<welcome-file>main.jsp</welcome-file>
</welcome-file-list>