tomcat 根据 请求 域名 访问不同webapps 目录

在tomcat/conf/server.xml中

<Host name="testw.xxx.cn"  appBase="webapps/www"
            unpackWARs="true" autoDeploy="true"
            xmlValidation="false" xmlNamespaceAware="false">
        <Context path="" docBase="" debug="0" reloadable="false" >
        </Context>
      </Host>
	  <Host name="testb.xxx.cn"  appBase="webapps/bbb"
            unpackWARs="true" autoDeploy="true"
            xmlValidation="false" xmlNamespaceAware="false">
        <Context path="" docBase="" debug="0" reloadable="false" >
        </Context>
      </Host>
 

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