PbootCMS登录请求发生错误,检查服务器环境pathinfo及伪静态规则配置

COS、CDN
wdzsjl 2周前 (01-01) 阅读数 28 #HTML

确认服务器支持 Pathinfo

Nginx 配置
  1. 编辑 Nginx 配置文件

    • 打开你的 Nginx 配置文件,通常位于 /etc/nginx/nginx.conf 或 /etc/nginx/sites-available/your_site
    • 找到对应站点的配置块,通常在 server 块内。
  2. 添加 Pathinfo 支持

    • 在 location 块中添加以下配置:
      location / {     if (!-e $request_filename) {         rewrite ^/(.*)$ /index.php/$1 last;     } }
  3. 保存并重启 Nginx

    • 保存配置文件。
    • 重启 Nginx 服务以应用更改:
      sudo systemctl restart nginx

       

COS、CDN
热门