打开tomcat 下的 conf/server.xml,找到
<Connector port="8080" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" redirectPort="8443" acceptCount="100" debug="0" connectionTimeout="20000" disableUploadTimeout="true" />
修改port="8080"为port="80" // 访问的时候直接输入http://localhost,就能访问到你的tomcat主页了 或者修改成你想要的端口号 //访问的时候输入http://localhost:80+你修改的端口号,就能访问到你的tomcat主页了,如:http://localhost:8088