1.打開apache的httpd.conf文件,找到
# Virtual hosts
#Include conf/extra/httpd-vhosts.conf
這一段把Include conf/extra/httpd-vhosts.conf前面的"#"去掉。
2.修改位於(win7)c:/windows/system32/drivers/etc/目錄下的hosts文件
增加一段:127.0.0.1 x.acme.com(你用來訪問的域名)
3.我用的是wamp包,所以到c:/wamp/bin/apache/Apache2.2.11/conf/extra目錄下
修改文件httpd-vhosts.conf
NameVirtualHost默認如下:
NameVirtualHost *:80
增加:
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot "/var/www/html"
ServerName x.acme.com
ErrorLog "logs/x.acme.com-error.log"
CustomLog "logs/x.acme.com-access.log" common
</VirtualHost>
改好然後重啟服務器。
在浏覽器中輸入http://x.acme.com就可以到你的目錄.
當然如果你是想在現有的web服務器上增加虛擬主機,那麼原來localhost的服務要能用的話,需要在上面的基礎上加點東西:
hosts文件裡加上:127.0.0.1 localhost
並在httpd-vhosts.conf文件裡增加:
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot "/var/www/"
ServerName localhost
ErrorLog "logs/ localhost-error.log"
CustomLog "logs/ localhost-access.log" common
</VirtualHost>