wordpress后台404页面
Posted 梦轻尘
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wordpress后台404页面相关的知识,希望对你有一定的参考价值。
就在刚刚,boss需要看公司网站后台,网站是用wordpress搭的,发现全是404,蛋疼,于是google,下面是解决办法:
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;
加上这句rewrite /wp-admin$ $scheme://$host$uri/ permanent,然后重启nginx就好了
以上是关于wordpress后台404页面的主要内容,如果未能解决你的问题,请参考以下文章
wordpress的后台如何设置404错误页面?我的主题里面有个404.html,不清楚怎么调用
wordpress中怎样设置404自定义错误指向wp-404-handler.php???