一、添加服務(wù)端口
在文件Apache\conf\httpd.conf中,
1、找到 Listen 80 在它的下面加一行 Listen 8001(端口可以自己重置)。
2、找到
模塊,去掉前面的#號。
3、因為用到虛擬主機(jī),所以找到
去掉前面的#號。
二、添加服務(wù)虛擬配置
在文件Apache\conf\extra\httpd-vhosts.conf 文件中,修改里面相應(yīng)的配置:成都服務(wù)器托管
NameVirtualHost *:80
ServerAdmin webmaster@d.localhost
DocumentRoot "D:/wamp/www/Lee"
ServerName www.lee.com
ServerAlias www.dummy-host.localhost
ErrorLog "logs/dummy-host.localhost-error.log"
CustomLog "logs/dummy-host.localhost-access.log" common
NameVirtualHost *:8001
ServerAdmin webmaster@d.localhost
DocumentRoot "D:/wamp/www/LiMei"
ServerName www.limei.com
ErrorLog "logs/dummy-host2.localhost-error.log"
CustomLog "logs/dummy-host2.localhost-access.log" common
三、打開C:\WINDOWS\system32\drivers\etc\hosts
輸入如下內(nèi)容:成都服務(wù)器托管
保存文件。