Tomcat 6 绑定域名和根域名

Tomcat 6 绑定域名和根域名

通常情况下,大家都会使用 Ngix + Tomcat 或者Apache +  Tomcat的模式来构建网站系统、绑定域名,这也是比较科学和实用的方式,这两种方式笔者会在后续补充上来。这次主要讲的是单独使用Tomcat6来部署jsp网站(请不要吐槽技术low,因为我们网站目前没有大的访问量,且节省时间)。

ps:本文的前提条件是你的www域名和顶级域名都可以解析到你的服务器了,本文以域名作为域名示例,虚构的域名。。。

步骤一:将项目发布到Tomcat服务器上,且指定端口为80端口

可以将项目war包放到服务器的任意位置解压例如解压到/appuser/web/linuxidc(后续会使用到),然后打开Tomcat目录下的conf目录中的server.xml文件,找到<Connnector port="8080"...>的配置项,改变端口为80端口,例:

<Connector port="80" protocol="HTTP/1.1"
              connectionTimeout="20000"
              redirectPort="8443" URIEncoding="UTF-8" />

ps:其中URIEncoding是用来设置tomcat服务器请求路径的编码设置,防止中文乱码

步骤二:指定Tomcat对应的域名

接着编辑server.xml,找到<Host..>的配置项,指定Host中的name属性为你的域名例如,接着在Host下添加子标签

<Context path="" docBase="/appuser/web/linuxidc" allowLinking="true"></Context>

最后的Host标签中的内容是这样的:

<Host  appBase="webapps"
            unpackWARs="true" autoDeploy="true">
...省略的默认配置
    <Alias>linuxidc.com</Alias><!-- 绑定顶级域名时要配置的,提前放出来 -->
    <Context path="" docBase="/appuser/web/linuxidc" allowLinking="true"></Context>
</Host>

其中docBase就是我们服务器上解压后的war包目录,这样配置完成后启动Tomcat没有错误的话,访问域名就可以了,网站都可以正常显示。

但当你访问linuxidc.com的时候会发现网站无法解析,也就是你的根域名还没有被解析。

步骤三:绑定Tomcat的顶级域名,这里需要使用到tomcat的urlrewrite组件,是用来做tomcat的伪静态组件

从SEO(搜索引擎优化)的角度来讲根域名通常是需要重定向(http状态码301)到www域名的,这样更利于搜索引擎的收录和提升网站权重。因此将顶级域名重定向到www域名是非常必要的。

那么这里我们使用urlrewrite组件来做这个事情。首先从urlrewrite官网下载urlrewritefilter-4.0.3.jar包,版本随意....,加入到项目中,然后在WEB-INF下添加urlrewrite组件对应的配置文件urlrewrite.xml,内容如下:

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE urlrewrite PUBLIC "-//tuckey.org//DTD UrlRewrite 4.0//EN"
        "http://www.tuckey.org/res/dtds/urlrewrite4.0.dtd">
<!--

Configuration file for UrlRewriteFilter
   

-->
<urlrewrite>
    <!-- 关键配置,域名为 -->
    <rule>
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; <name>seo redirect</name>
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; <condition operator="notequal">^</condition>
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; <from>^/(.*)</from>
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; <to type="permanent-redirect" last="true">$1</to>
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; </rule>
&nbsp;&nbsp;&nbsp; <rule>
    <rule>
        <note>
            The rule means that requests to /test/status/ will be redirected to /rewrite-status
            the url will be rewritten.
        </note>
        <from>/test/status/</from>
        <to type="redirect">%{context-path}/rewrite-status</to>
    </rule>
   
    <outbound-rule>
        <note>
            The outbound-rule specifies that when response.encodeURL is called (if you are using JSTL c:url)
            the url /rewrite-status will be rewritten to /test/status/.

The above rule and this outbound-rule means that end users should never see the
            url /rewrite-status only /test/status/ both in thier location bar and in hyperlinks
            in your pages.
        </note>
        <from>/rewrite-status</from>
        <to>/test/status/</to>
    </outbound-rule>

</urlrewrite>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/6820d01774146400663e16c88f74c2a6.html