假设Apache目前只为域名http://abc.com提供服务,现在要在同一个IP地址上增加一个名为http://edf.com的虚拟主机,此时只需在httpd.conf中添加如下的内容就可以。
NameVirtualHost *:80 //apache站点的默认端口
ServerName test1.jbxue.com
ServerAlias test1.jbxue.com *.test1.jbxue.com //这里是apache添加站点域名的地方
DocumentRoot /web/www/test1 (路径要根据自己的配置来写) //apache站点的路径
ServerName test2.jbxue.com
ServerAlias test2.jbxue.com *.test2.jbxue.com //这里是apache添加站点域名的地方
DocumentRoot /web/www/test2 //apache站点的路径