在tomcat8上配置子域

时间:2015-02-02 17:26:07

标签: apache tomcat subdomain tomcat8

我在windows上运行tomcat8。我需要为我的应用创建一个子域名。我使用以下步骤在server.xml中配置子域,但是我在点击子域url时得到了404.

  1. 我已将ab123.com和subdomain.ab123.com的127.0.0.0映射添加到我的主机文件中。
  2. 更新server.xml(下方)
  3. 将目录从“C:\ tomcatapps \ testapps”复制到“C:\ tomcatapps \ testapps \ subdomain”然后启动tomcat
  4. 点击ab123.com(有效!)
  5. 点击subdomain.ab123.com(404错误)
  6. 的Server.xml

      <Host name="subdomain.ab123.com"  appBase="testapps\subdomain" unpackWARs="true" >
       <Context antiJARLocking="true" docBase="C:\tomcatapps\testapps\subdomain" path=""/>
      </Host>
      <Host name="ab123.com"  appBase="testapps" unpackWARs="true" autoDeploy="true" xmlValidation="false" xmlNamespaceAware="false">
    

    Tomcat目录结构

    tomcatapps
       **testapps**
          host-manager
          META-INF
          ROOT
          **subdomain**
             host-manager
             META-INF
             ROOT
    

0 个答案:

没有答案