Nginx下让WordPress支持伪静态规则及网站下级目录配置伪静态教程
假如您的网站是http://ningyuqiao.blog.51cto.com/网站是用wordpres搭建的,则只需要在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; } }
假如您的网站是http://ningyuqiao.blog.51cto.com/blog/网站是用wordpres搭建的,则代码需要改成
location /blog {if (-f $request_filename/blog/index.html){ rewrite (.*) $1/blog/index.html break; }if (-f $request_filename//blog/index.php){ rewrite (.*) $1/blog/index.php; }if (!-f $request_filename){ rewrite (.*) /blog/index.php; } }
本文出自 “我的博客” 博客,请务必保留此出处http://ningyuqiao.blog.51cto.com/5581274/1615552
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。