joomla nginx伪静态规则!

注意,下面这个是错误的(用宝塔面板的兄弟,你们可以测试直接用wp的伪静态规则也是可以的):
if (!-e $request_filename) {
 rewrite (/|.php|.html|.htm|.feed|.pdf|.raw|/1*)$ /index.php last;
 break;
 }

正确的应该是下面这个:
location / { try_files $uri $uri/ /index.php?$args; }


  1. .
最后修改:2020 年 12 月 31 日
如果觉得我的文章对你有用,请随意赞赏。