tomcat的conf目录下,修改server.xml文件
<Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" />
将port端口8080改为80
然后找到:<Host name=:"localhost" appBase="webapps" unpackWARs="true" autoDeploy="true">
在<Host><Host/>中间添加:<Context path="" docBase="/项目名"/>
注意: 项目名的地方填写绝对地址,eg:/root/app/tomcat/apache-tomcat-8.5.29/webapps/项目名
否则可能会报错
如果WEB项目没有设置首页去web.xml中添加
<welcome-file-list>
<welcome-file>首页路径</welcome-file>
</welcom-file-list>