欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

在tomcat将一个IP地址绑定多个域名的方法

程序员文章站 2022-07-09 17:31:30
在server.xml中下添加2个host就可以了。 

在server.xml中<engine></engine>下添加2个host就可以了。 

<host name="www.abcd.com" debug="0" appbase="webapps" unpackwars="true" autodeploy="true" xmlvalidation="false" xmlnamespaceaware="false"> 
<context path="" docbase="d:\web\abcd.com"/> 
</host> 
<host name="www.xyz.com" debug="0" appbase="webapps" unpackwars="true" autodeploy="true" xmlvalidation="false" xmlnamespaceaware="false"> 
<context path="" docbase="d:\web\xyz.com"/> 
</host>