本地apache設定虛擬域名
阿新 • • 發佈:2018-11-01
最近不管是玩wordpress/opencart二次開發還是本地除錯後端專案,都用到了虛擬域名的功能,雖網上本地apache設定虛擬域名
類似文章還多,記錄下自己的還是不錯的
以 www.test.com
=>
開啟本地xampp
中的abc
專案 為例子
1、開啟xampp資料夾, 開啟...\xampp\apache\conf\extra
的httpd.conf
, 去掉httpd-vhosts.conf
前的#
號註釋
# Virtual hosts
Include conf/extra/httpd-vhosts.conf
2、開啟:...\xampp\apache\conf\extra
httpd-vhosts.conf
<VirtualHost *:80>
ServerAdmin www.test.com
DocumentRoot "D:/xampp/htdocs/abc"
ServerName www.test.com
ErrorLog "logs/www.test.com-error.log"
CustomLog "logs/www.test.com-access.log" common
</VirtualHost>
3、開啟C盤,按路徑C:\Windows\System32\drivers\etc
找到hosts
127.0.0.1 www.test.com