centos下apache多域名单ip配置


设定documentroot目录为: /test

域名有两个,www.test.com,blog.test.com

首先打开httpd.conf,找到#Include conf/extra/httpd-vhosts.conf,去掉前面的#号,设置ServerName 192.168.0.1:80

然后打开你的httpd-vhosts.conf,打开,写入

NameVirtualHost  192.168.0.1:80
#这第一段很重要,必须设置当前服务器ip
<VirtualHost ServerName 192.168.0.1:80>
ServerAdmin [email protected]
DocumentRoot /test
ServerName ServerName 192.168.0.1:80
</VirtualHost>
#
<VirtualHost ServerName 192.168.0.1:80>
ServerAdmin [email protected]
DocumentRoot /test/test1
ServerName www.test.com
</VirtualHost>
#
<VirtualHost ServerName 192.168.0.1:80>
ServerAdmin [email protected]
DocumentRoot /test/test2
ServerName blog.test.com
</VirtualHost>
重启apache后就可以实现两个域名访问不同目录了,还有个小建议,在/test下建立一个index.php,使用
header跳转到www.test.com上,可以实现一个test.com强制跳转到www.test.com之类的效果,blog.test.com
不受影响。

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。