tomcat配置一个ip可以挂接多个域名

<Host name="newbaiying.localhost" debug="0" appBase="E:\Tomcat 5.0.28\webapps"     unpackWARs="true" autoDeploy="true"
       xmlValidation="false" xmlNamespaceAware="false">
<Context path="" docBase="E:\Tomcat 5.0.\webapps\项目名" reloadable="true" caseSensitive="false" debug="0"></Context>
        <Logger className="org.apache.catalina.logger.FileLogger"
        directory="logs"  prefix="localhost_log."  suffix=".txt"
            timestamp="true"/>
<Alias>www.51soke.com</Alias>
</Host>
在tomcat的server.xml中加上如上配置即可。

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