確認伺服器支援 Pathinfo
Nginx 配置
-
編輯 Nginx 配置檔案
- 開啟你的 Nginx 配置檔案,通常位於
/etc/nginx/nginx.conf
或/etc/nginx/sites-available/your_site
。 - 找到對應站點的配置塊,通常在
server
塊內。
- 開啟你的 Nginx 配置檔案,通常位於
-
新增 Pathinfo 支援
- 在
location
塊中新增以下配置:location / { if (!-e $request_filename) { rewrite ^/(.*)$ /index.php/$1 last; } }
- 在
-
儲存並重啟 Nginx
- 儲存配置檔案。
- 重啟 Nginx 服務以應用更改:
sudo systemctl restart nginx