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; }
- . ↩