如何在 Nginx 中仅将主页 /index.php 重定向到 / 而不是申请 orther 页面



我有一个主页:主页/索引.php和管理页面:主页/管理员/索引.php。我只想将主页从 .index.php 重定向到非 .index.php。我尝试使用代码:

它全部重定向到根 domain.com。如何只申请主页?谢谢

这适用于新的Linux服务器,运行MySQL 5,PHP 5,Nginx和Apache 2。

      rewrite ^(.*/)index.(php?)$ $1 permanent;
    }

我只想重定向主页。

我尝试了您的选择,但失败了。我尝试另一种方式:

rewrite ^/index.php?$ scheme://$host/ redirect;

最新更新