更改tomcat6.0的默认目录

我在$tomcat/webapps/下建了个agrilink.cn目录作为我网站的默认目录,在agrilink.cn中有一个index.html文件,该文件要作为我网站的默认主页。

修改配置文件:
首先,修改$tomcat/conf/server.xml文件。
在server.xml文件中,有一段如下:
……
<engine name="Catalina" defaultHost="localhost">
   <host name="localhost" appBase="webapps"
       unpackWARs="true" autoDeploy="true"
       xmlValidation="false" xmlNamespaceAware="false">
   ……
   <host>
</engine>
……
在<host></host>标签之间添加上:

        <Context path="" docBase="agrilink.cn" 
          debug="5" reloadable="true" crossContext="true"></Context>
path是说明虚拟目录的名字,如果你要只输入ip地址就显示主页,则该键值留为空;

docBase是虚拟目录的路径,它默认的是$tomcat/webapps/ROOT目录,现在我在webapps目录下建了一个agrilink.cn目录,让该目录作为我的默认目录。

debug和reloadable一般都分别设置成5和true。

然后,修改你的工程下web.xml文件。
在web.xml文件中,修改成有一段如下:
    <welcome-file-list>
        <welcome-file>index.html</welcome-file>
    </welcome-file-list>
这样就可以通过http://localhost:端口,访问了.

你可能感兴趣的:(html,tomcat,xml,Web)