這兩天配了一下本機的apache的基於網域名稱的虛擬主機,寫篇完整的文章記錄一下吧。
以網域名稱mengyou.com為例。
一、修改host檔案
開啟此檔案:c:/windows/system32/drivers/etc/hosts。新增一行如下:
127.0.0.1 mengyou.com
二、修改http.conf檔案
開啟http.conf檔案,進行以下修改。
...
# virtual hosts
include conf/extra/httpd-vhosts.conf //將此行前面的#去掉
三、配置httpd-vhosts.conf檔案(此檔案目錄見上面的配置)
新增以下幾行進行虛擬網域名稱配置
documentroot "f:/apache/htdocs/alliancecircle"
servername mengyou.com
errorlog "logs/dummy-mengyou.com-error.log"
customlog "logs/dummy-mengyou.com-access.log" common
四、檢視站點目錄許可權
開啟http.conf,修改以下內容
options followsymlinks
allowoverride none
# deny from all
order allow,deny
allow from all //記得修改或新增此行才有許可權訪問
linux下的配置也基本一致,供參考。
apache下虛擬網域名稱的配置(windows)
在我們開發中通過虛擬網域名稱來訪問乙個指定的專案確實很方便,接下來教大家如何通過手動的方式去配置虛擬網域名稱 已apache伺服器為例 一 首頁我們得找到host檔案 windows下這個檔案在c盤中windows system32 drivers etc hosts中 加入如下內容 127.0.0...
apache下虛擬網域名稱配置
在我們開發中通過虛擬網域名稱來訪問乙個指定的專案確實很方便,接下來教大家如何通過手動的方式去配置虛擬網域名稱 以apache伺服器為例 一 首頁我們得找到host檔案 windows下這個檔案在c盤中windows system32 drivers etc hosts中 加入如下內容 127.0.0...
apache下虛擬網域名稱配置
在我們開發中通過虛擬網域名稱來訪問乙個指定的專案確實很方便,接下來教大家如何通過手動的方式去配置虛擬網域名稱 已apache伺服器為例 一 首頁我們得找到host檔案 windows下這個檔案在c盤中windows system32 drivers etc hosts中 加入如下內容 127.0.0...