可以透過設定 Apache 的 httpd.conf 來完成,
參考步驟, 如下 :
1) 在 XAMPP Control Panel 中, 動作如下圖, 開啟 httpd.conf 檔案 :
2) 搜尋 "DocumentRoot", 在它的 </Directory> 之後, 加上以下設定 :
設定
Alias /虛擬路徑 "實體路徑" <Directory "實體路徑"> AllowOverride None Require all granted </Directory> 範例 : Alias /temp "c:/myPHP/myWork" <Directory "c:/myPHP/myWork"> AllowOverride None Require all granted </Directory>
3) 重新啟動 Apache, 讓設定生效即可, 範例結果 :