咱們在本地開發時,通常是在瀏覽器輸入 http://localhost/項目文件夾名 來測試網頁文件,你有沒有想過在本地在瀏覽器輸入你本身設定的一個域名進入項目文件夾中去,本地配置多域名能夠測試二級域名以及其餘與域名相關的問題。apache
<VirtualHost *:80>windows
DocumentRoot "D:/wamp/www/test"瀏覽器
ServerName www.test.com測試
</VirtualHost>spa
<VirtualHost *:80>orm
DocumentRoot "D:/wamp/www/test/img"server
ServerName img.test.com開發
</VirtualHost>域名
<VirtualHost *:80>test
DocumentRoot "D:/wamp/www/"
ServerName localhost
</VirtualHost>
這個根據目錄根據本身的apache文件目錄來自行調整,個人apache工做目錄爲D:/wamp/www/,改爲本身的apache工做目錄便可。
最後一步,重啓apache,在瀏覽器中輸入:www.test.com會出現test文件夾的默認的內容
(在vhost裏面加這個就開啓了localhost)
<VirtualHost *:80>DocumentRoot "E:\wamp64\www"ServerName localhost </VirtualHost>