XAMPP配置虛擬主機具體步驟

2021-09-19 10:33:31 字數 1138 閱讀 9474

1.安裝xampp安裝包到d盤,安裝完成後,退出xampp整合環境,進入下一步,配置虛擬主機;首先在xampp/htdocs目錄下新建目錄magento2和test資料夾(此資料夾為你的專案全部內容)。

ps.在建立多個虛擬主機時,也需要新建乙個資料夾包含你的專案全部內容如magento2和test,如果還需要建立則再建立相應資料夾。

2.找到你的xampp安裝目錄,依次開啟以下目錄:apache/conf/extra目錄找到httpd-vhosts.conf檔案,用記事本開啟。

3.開啟http-vhosts.conf後,在最下面新增如下**:

servername www.magento2.com

documentroot "d:/xampp/htdocs/magento2"

options followsymlinks includesnoexec indexes

directoryindex index.html index.htm index.php

allowoverride all

order deny,allow

allow from all

require all granted

servername www.test.com

documentroot "d:/xampp/htdocs/test"

options followsymlinks includesnoexec indexes

directoryindex index.html index.htm index.php

allowoverride all

order deny,allow

allow from all

require all granted

4.此外,需要配置c盤host檔案,依次找到下面的目錄:c盤/windows/system32/drivers/etc目錄,找到hosts檔案,用記事本開啟,新增127.0.0.1 www.magento2.com 儲存,如:

127.0.0.1   www.magento2.com

127.0.0.1 www.test.com

5.配置虛擬主機完成,重啟xampp整合環境即可。

xampp 虛擬主機配置

測試環境 xampp3.2.1 win7 一 基於埠的虛擬主機 1 apache配置檔案 httpd.conf 改動 a 搜尋 listen 增加兩個新埠 listen 8000 listen 8001 b 搜尋 vhosts 確保 include conf extra httpd vhosts.c...

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...