指定tomcat具体的某个项目文件为主页面

比如首页为:/jpress_web/hello.jsp

1、修改tomcat/conf/service.xml文件

找到文件:


	
        

        
        

        
        

      

添加:


path 指的是虚拟路径,如果为空,表示是: http://域名
如果为“abc”,则表示访问地址为: http://域名/abc

docBase是虚拟目录的路径,可以写绝对路径,也可以写相对路径,相对路径指的是webapps下的项目名。

2、修改tomcat/conf/web.xml文件

找到如下(文档的最后面):


        index.html
        index.htm
        index.jsp
标签里添加

hello.jsp


3、重启tomcat后,可以直接通过域名访问


你可能感兴趣的:(------,【建站】)