首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 服务器 > Apache >

Apache 二配置基于域名的虚拟主机

2012-07-23 
Apache 2配置基于域名的虚拟主机买了改动vps,想运行两个网站。决定配置基于域名的虚拟主机,但在网上找了很

Apache 2配置基于域名的虚拟主机

买了改动vps,想运行两个网站。决定配置基于域名的虚拟主机,但在网上找了很多资料。发现很多人都跟我一样的问题,就是配置虚拟主机无效,总是跑到第一个主机去。

?

原来按照官方文档配置就ok了。NameVirtualHost这个指令是必须的!

?

NameVirtualHost *:80<VirtualHost *:80>ServerName www.domain.tldServerAlias domain.tld *.domain.tldDocumentRoot /www/domain</VirtualHost><VirtualHost *:80>ServerName www.otherdomain.tldDocumentRoot /www/otherdomain</VirtualHost>

?

热点排行