确认服务器支持 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