牛骨文教育服务平台(让学习变的简单)
博文笔记

Tomcat中更改网站根目录和默认页的配置方法

创建时间:2014-07-08 投稿人: 浏览次数:2083

1.tomcat原来的默认根目录是http://localhost:8080,如果想修改访问的根目录,可以这样:

找到tomcat的server.xml(在conf目录下),找到:

.代码如下: <Host name="localhost" appBase="webapps"
       unpackWARs="true" autoDeploy="true"
       xmlValidation="false" xmlNamespaceAware="false"></Host>

在</Host>前插入:

.代码如下: <Context path="" docBase="G:workspaceBLTestWebContent" reloadable="true" workDir="D: omcatAppwork" debug="0"/>

其中G:workspaceBLTestWebContent就是我想设置的网站根目录,然后重启tomcat。


再次访问http://localhost:8080时,就是直接访问D:/eclipse3.3/jb51.net/tomcat/目录下的文件了。


2.tomcat的web.xml(在conf目录下),在该文件中找到

.代码如下:

    <welcome-file-list>
        <welcome-file>index.html</welcome-file>
        <welcome-file>index.htm</welcome-file>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>

这是tomcat默认的3个文件,当你输入指定路径后,tomcat会自动查找这3个页面。如果你想让tomcat自动找到自己的页面,比如main.jsp。可以修改上面信息为:

.代码如下:

    <welcome-file-list>
        <welcome-file>main.jsp</welcome-file>
        <welcome-file>index.html</welcome-file>
        <welcome-file>index.htm</welcome-file>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>

    
这样就可以了。
声明:该文观点仅代表作者本人,牛骨文系教育信息发布平台,牛骨文仅提供信息存储空间服务。