使用AMH面板自带的伪静态规则在使用wordpress程序时出现这样的情况已经很常见,小七以前使用AMH的出现过这样的情况,一般来说是在登录后台时有些时候会出现的(特别说明在线伪静态规则wordpress,而不是你自己编写的)。到目前AMH官方对于4.2版本也没有修改一下,如果使用自带的wordpress伪静态出现了以上的情况,只需要在如下图的wordpress编辑里面增加一个代码即可!
代码:rewrite /wp-admin$ $scheme://$host$uri/ permanent;
完整版
location / { if (-f $request_filename/index.html){ rewrite (.*) $1/index.html break; } if (-f $request_filename/index.php){ rewrite (.*) $1/index.php; } if (!-f $request_filename){ rewrite (.*) /index.php; } } rewrite /wp-admin$ $scheme://$host$uri/ permanent;