本內(nèi)容分以下幾個(gè)步驟:
1、首頁(yè)我們得找到host文件、這個(gè)文件在c盤中WINDOWS\system32\drivers\etc\hosts
在該文件中插入:
<pre># localhost name resolution is handled within DNS itself.
127.0.0.1 localhost
::1 localhost
127.0.0.1 localhost
127.0.0.1 www.emswxh.com
127.0.0.3 www.xiu.com </pre>
2、然后咱們得去找httpd.conf文件、這個(gè)文件相應(yīng)位置在您服務(wù)器安裝的目錄下/\apache\conf\httpd.conf , 找到 “Include conf/extra/httpd-vhosts.conf 如果前面有# 則需要把它刪掉
<VirtualHost *:80>
ServerAdmin webmaster@dummy-host2.example.com
DocumentRoot "E:/m1905/ems" //這個(gè)為您的項(xiàng)目目錄
ServerName www.emswxh.com //這個(gè)為您在host中配置
ErrorLog "logs/dummy-host2.example.com-error.log"
CustomLog "logs/dummy-host2.example.com-access.log" common
</VirtualHost>
3、找到httpd-vhosts.conf文件
然后添加以下內(nèi)容
然后重啟服務(wù)器就可以了
參考:http://blog.csdn.net/tracywxh/article/details/8456512