1. 程式人生 > >本地apache設定虛擬域名

本地apache設定虛擬域名

最近不管是玩wordpress/opencart二次開發還是本地除錯後端專案,都用到了虛擬域名的功能,雖網上本地apache設定虛擬域名 類似文章還多,記錄下自己的還是不錯的

www.test.com => 開啟本地xampp 中的abc專案 為例子
1、開啟xampp資料夾, 開啟...\xampp\apache\conf\extrahttpd.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
參考連結

本地apache設定虛擬域名