修改TOMCAT默认主页
Posted 隔壁家的大白菜
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了修改TOMCAT默认主页相关的知识,希望对你有一定的参考价值。
1、默认的项目都在目录:apache-tomcat-9.0.0.M22\\webapps\\ROOT下
2、该目录下有一个index.jsp是tomcat的默认主页,如下
3、现在需要修改这个默认主页,改成自己的主页
(1)修改配置文件server.xml(在conf目录下),找到如下代码:
<Host name="172.18.0.5" appBase="webapps" unpackWARs="true" autoDeploy="true"> <Context path="" docBase="C:\\apache-tomcat-9.0.0.M22\\webapps\\ROOT"/>
修改第三行为<Context path="" docBase="C:\\apache-tomcat-9.0.0.M22\\webapps\\ROOT\\1" debug="0"/>
其中C:\\apache-tomcat-9.0.0.M22\\webapps\\ROOT\\1就是你想设置的网站根目录,我这里的根目录就是1
(2)修改配置文件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>work_detail.html</welcome-file>,注意:work_detail.html是目录1下的文件
<welcome-file-list> <welcome-file>work_detail.html</welcome-file> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> </welcome-file-list
4、重启tomcat,访问172.18.0.5:8080
OK,访问的根目录就是刚刚设置的目录文件了
以上是关于修改TOMCAT默认主页的主要内容,如果未能解决你的问题,请参考以下文章
Tomcat:解决Tomcat可以在eclipse启动,却无法显示默认页面的操作
免配置环境变量使用Tomcat+设置项目主页路径为http://localhost:8080+修改tomcat端口号
tomcat的服务器 设置了8080端口 怎么域名指向这一段口
在Tomcat的安装目录下conf目录下的server.xml文件中增加一个xml代码片段,该代码片段中每个属性的含义与用途