1.相对路径方式1:把项目index.html放在tomcat的webapps/ROOT下,浏览器访问地址:http://www.aaa.com:8080/index.html
2.相对路径方式2:在webapps下新建aaa文件夹,然后将项目index.html放在该文件夹下,访问地址:http://www.aaa.com:8080/aaa/index.html
3.虚拟路径方式1:在tomcat的conf配置文件夹下找到server.xml,
找到<Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true">下,
新增<Context docBase="D:\xml" path="/bbb"></Context>,保存退出。
然后在D盘下新建xml文件夹,将项目index.html放至此文件夹。
浏览器访问地址:http://www.aaa.com:8080/bbb/index.html
4.虚拟路径方式2:
a:在tomcat中 conf/catalina/localhost 文件夹下ccc.xml文件(ccc自定义),
b:添加ccc.xml内容
<?xml version="1.0" encoding="UTF-8"?>
<Context docBase="D:\xml"></Context>
c:将项目index.html放至D:/xml下
浏览器访问地址:http://www.aaa.com:8080/ccc/index.html
原文地址:https://www.cnblogs.com/ayeex/p/11622080.html
时间: 2024-10-04 10:13:09