xampp 虛擬主機配置

2021-06-21 11:21:25 字數 1731 閱讀 9335

測試環境 xampp3.2.1 + win7

一、基於埠的虛擬主機

(1)apache配置檔案 httpd.conf 改動:

a、 搜尋「listen」。增加兩個新埠

listen 8000

listen 8001

b、搜尋「vhosts」 。確保「include conf/extra/httpd-vhosts.conf」 前無注釋符號「#」

(2)改動 vhosts.conf檔案

增加配置項

##serveradmin [email protected]

documentroot "d:/program files (x86)/xampp/htdocs/keya/4_upload"

##servername keya

errorlog "logs/keya-error.log"

customlog "logs/keya-access.log" common

order allow,deny

allow from all

##serveradmin [email protected]

documentroot "d:/program files (x86)/xampp/htdocs/nw"

##servername ylk

errorlog "logs/nw-error.log"

customlog "logs/nw-access.log" common

order allow,deny

allow from all

(3)訪問

chrome 瀏覽器訪問 localhost:8000或者localhost:8001

二、基於網域名稱的虛擬主機

(1)配置c:\windows\system32\drivers\etc\hosts檔案

加兩行127.0.0.1    keya

127.0.0.1    ylk

(2) 修改apache的配置檔案 httpd.conf

a、監聽埠                 listen 80

b、包含虛擬主機配置檔案     「include conf/extra/httpd-vhosts.conf」   確保這句話前無注釋符號

(3)修改httpd-vhosts.conf

##serveradmin [email protected]

documentroot "d:/program files (x86)/xampp/htdocs/keya/4_upload"

servername keya

errorlog "logs/keya-error.log"

customlog "logs/keya-access.log" common

order allow,deny

allow from all

##serveradmin [email protected]

documentroot "d:/program files (x86)/xampp/htdocs/nw"

servername ylk

errorlog "logs/nw-error.log"

customlog "logs/nw-access.log" common

order allow,deny

allow from all

XAMPP 虛擬主機配置

virtual hosts include conf extra httpd vhosts.conf 確保此段開頭沒有 d xampp cgi bin allowoverride all options none require all granted directory 修改為 d xampp c...

xampp配置虛擬主機

xamp目錄 apache conf extra httpd vhosts.conf vhost.conf其中給的一些例子,我們寫的時候需要去掉 號,表示注釋的意思。serveradmin webmaster dummy host.example.com documentroot c xampp h...

xampp配置虛擬主機

昨天下午瀏覽網頁的時候發現的xampp,看上去挺專業的。於是乎今天上午嘗試著使用了一下,感覺還不錯,剛剛配置了個虛擬主機。大體流程和wamp或是apache都差不多,把配置過程分享給大家。如果已經開啟了apache伺服器,先將其關掉。接下來進入配置虛擬主機 我這裡先專案放在了d盤,資料夾名稱proj...