tomcat的默认界面设置

在tomcat安装路径处找到conf文件夹

在conf文件夹中用记事本打开web.xml

在最后的代码中

<welcome-file-list>       

   <welcome-file>index.html</welcome-file> 

   <welcome-file>index.htm</welcome-file> 

        <welcome-file>index.jsp</welcome-file>     

</welcome-file-list> 

在<welcome-file-list>标签中新添加一个<welcome-file>标签

在标签中添加网页名称即可

猜你喜欢

转载自www.cnblogs.com/wyb-com/p/10696633.html