這篇文章主要為大家詳細介紹了win10 apache配置虛擬主機後localhost無法使用的解決方法,具有一定的參考價值,有興趣的小伙伴們可以參考一下
win10系統配置虛擬主機
1.用記事本或Sublime Text開啟httpd.conf
#ctrl f 搜尋httpd-vhosts.conf
#Include conf/extra/httpd-vhosts.conf
的#號去掉儲存
新增以下內容:
<VirtualHost *:80> ServerAdmin webmaster@youremail.com DocumentRoot "E:/your_web_root" ServerName your.web.com ErrorLog "logs/your_web_error.log" CustomLog "logs/your_web_access.log" common </VirtualHost>
3.本地測試的話,還需要在hosts檔案中設定一個網域解析條目,在C:/windows/system32/drivers/etc/目錄下找到hosts檔案
重點來了
這時虛擬主機的網域名稱
www.web.com可以正常訪問,但localhost就不能訪問了。報錯如下:
解決:
在httpd.conf檔案中有一行程式碼是需要註解掉的ServerName localhost:80把
ServerName
也許你的httpd.conf檔案中並不是localhost:80 這個值,可能是
ServerName a.com:80 ;
之後無論開啟或關閉虛擬主機,localhost都可以正常存取。
Laravel中unique和exists驗證規則的最佳化詳解php實例
################
以上是win10 apache設定虛擬主機後localhost無法使用的解決方法php技巧的詳細內容。更多資訊請關注PHP中文網其他相關文章!