1 首先在D:\wamp\bin\apache\Apache2.2.21\conf找到httpd.conf檔案開啟然後大概在460多行找到去掉#,然後就是下面的情況# Virtual hostsInclude conf/extra/httpd-vhosts.conf2 然後在開啟D:\wamp\bin\apache\Apache2.2.21\conf\extra中的httpd-vhosts.conf檔案在檔案的末尾加上 ServerAdmin webmaster@dummy-host3.example.com DocumentRoot "d:/wamp/www/4/huaguoshan" ServerName www.hgs2013.cn ErrorLog "logs/dummy-host3.example.com-error.log" CustomLog "logs/dummy-host3.example.com-access.log" common ServerAdmin webmaster@dummy-host4.example.com DocumentRoot "d:/wamp/www/test" ServerName www.test.cn ErrorLog "logs/dummy-host4.example.com-error.log" CustomLog "logs/dummy-host4.example.com-access.log" common寫入自己想要的網域名稱。 3 最後開啟C:\Windows\System32\drivers\etc中的hosts檔案在檔案的最後面把剛才定義的網域名稱給指定一下127.0.0.1 www.hgs2013.cn127.0.0.1 www.test.cn這樣就OK了,純屬個人見解
http://www.bkjia.com/PHPjc/440131.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/440131.htmlTechArticle1 首先在D:\wamp\bin\apache\Apache2.2.21\conf找到httpd.conf檔案開啟然後大概在460多行找到 去掉#,然後就是下面的情況# Virtual hostsInclude conf/extra/http...