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

tomcat 根据 请求 域名 访问不同webapps 目录在tomcat/conf/server.xml中Host nametestw.xxx.cnappBas

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>
?