美文网首页
Nginx下Wordpress提示404的解决方案

Nginx下Wordpress提示404的解决方案

作者: 格吾刚哥 | 来源:发表于2017-05-03 10:40 被阅读338次

    修改nginx的配置文件,添加以下重定向代码,保存重启即可

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

    相关文章

      网友评论

          本文标题:Nginx下Wordpress提示404的解决方案

          本文链接:https://www.haomeiwen.com/subject/uljktxtx.html