您的位置:首页 > 运维架构 > Tomcat

怎么修改tomcat默认访问首页

2013-11-20 19:36 567 查看
一般情况下安装好tomcat之后我们的默认访问首页是index了,但我们如果要修改或增加一个默认首页,我们可参考下面办法来解决。

通过 ip:port 访问到的是 tomcat 的管理页面,其他常规部署到 tomcat 的 webapps 目录下的项目都会是默认二级站点结构,可通过以下方式修改
tomcat 默认首页,使得启动 tomcat 后打开 http://localhost:8080/ 直接访问到自己的页面或 web 工程。

 

1. 如果仅仅需要修改首页内容,在 /webapps/ROOT/WEB-INF/web.xml 中添加或修改:
 代码如下复制代码
<?xml version="1.0" encoding="ISO-8859-1"?>

<!--

  Copyright 2004 The Apache Software Foundation

  Licensed under the Apache License, Version 2.0 (the "License");

  you may not use this file except in compliance with the License.

  You may obtain a copy of the License at

      http://www. href="http://www.111cn.net/list-121/" target=_blank>apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software

  distributed under the License is distributed on an "AS IS" BASIS,

  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

  See the License for the specific language governing permissions and

  limitations under the License.

-->

<web-app xmlns="http://java.sun.com/xml/ns/j2ee"

    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
    version="2.4">

    <servlet-mapping>

        <servlet-name>default</servlet-name>

        <url-pattern>/</url-pattern>

    </servlet-mapping>

    <welcome-file-list>

        <welcome-file>index.html</welcome-file>

        <welcome-file>index.htm</welcome-file>

        <welcome-file>index.jsp</welcome-file>

    </welcome-file-list>

</web-app>
2.修改$CATALINA_HOME/webapps/ROOT/index.jsp页面

 2. 直接将项目部署到 ROOT 目录:

把原来的 ROOT 目录清空; 

发布你自己的项目到 ROOT 目录下; 

发布程序 /webapps/ROOT/WEB-INF/web.xml 中需要有默认首页定义; 

重启 tomcat。 

 

3. tomcat 的 server.xml 中配置:

在 <Host> 标签里添加或修改:
 代码如下复制代码
<Context path="" docBase="../webapps/myWeb"/>
 4. 首页跳转:

修改/webapps/ROOT/index.html,添加js脚本:
 代码如下复制代码
 <script language="javascript"> 

  window.location.href = "http://" + window.location.hostname + "/myProj"; 

</script>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: