1.安裝XAMPP安裝套件到D盤,安裝完成後,退出XAMPP整合環境,進入下一步,配置虛擬主機;首先在XAMPP/htdocs目錄下新建目錄magento2和test資料夾(此資料夾為你的項目全部內容)。
PS.在建立多個虛擬主機時,也需要新建一個資料夾包含你的專案全部內容如magento2和test,如果還需要建立則再建立對應資料夾。
2.找到你的XAMPP安裝目錄,依序開啟以下目錄:apache/conf/extra目錄找到httpd-vhosts.conf文件,用記事本開啟。
3.開啟http-vhosts.conf後,在最下面加入以下程式碼:
<code><VirtualHost *:80> ServerName www.magento2.com DocumentRoot "D:/XAMPP/htdocs/magento2" <Directory "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 </Directory> </VirtualHost> <VirtualHost *:80> ServerName www.test.com DocumentRoot "D:/XAMPP/htdocs/test" <Directory "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 </Directory> </VirtualHost> </code>
4.此外,需要設定C碟host文件,依序找到下面的目錄:C碟/windows/system32/drivers/etc目錄,找到hosts文件,用記事本打開,添加127.0.0.1 www.magento2.com 保存,如:
<code>127.0.0.1 www.magento2.com 127.0.0.1 www.test.com</code>
5.配置虛擬主機完成,重啟XAMPP集成環境即可。
以上就介紹了XAMPP配置虛擬主機具體步驟,包含了方面的內容,希望對PHP教學有興趣的朋友有幫助。