*設定 vhost (虛擬網域)


1. 開啟 XAMPP 控制面版


2. 開啟檔案 httpd-vhosts.conf

D:\xampp\apache\conf\extra\httpd-vhosts.conf


3. 在 httpd-vhosts.conf 最後,加上以下設定值,並儲存

<VirtualHost *:80>

    ServerName larabbs.test

    DocumentRoot "D:/php/larabbs9/public"

</VirtualHost>


4. 開啟檔案 hosts

C:\Windows\System32\drivers\etc\hosts


5. 在 hosts 檔案最後,加上以下設定值,並儲存

127.0.0.1 larabbs.test

(如果無法儲存可能是檔案權限問題,請打開檔案修改寫入權限,再重新修改儲存)


補充 :

也可以打開 ”終端機” 輸入 ipconfig 查內網 IP (IPv4 位址),並設定對應的網址,例如 :

192.168.0.13 larabbs.test

可分享API文件給前端工程師


$ ipconfig

乙太網路卡 乙太網路:

連線特定 DNS 尾碼 . . . . . . . . : hitronhub.home

連結-本機 IPv6 位址 . . . . . . . : fe80::8d53:4fe8:1d8b:2496%9

IPv4 位址 . . . . . . . . . . . . : 192.168.0.13

子網路遮罩 . . . . . . . . . . . .: 255.255.255.0

預設閘道 . . . . . . . . . . . . .: 192.168.0.1


6. 開啟 XAMPP 控制面版,重新啟動 Apache


7. 開啟瀏覽器,網址輸入 larabbs.test,看看是否能正常瀏覽