LNMP一键安装包0.3中wordpress Rewrite(伪静态规则)正确写法

由于失误,lnmp一键安装包中的wordpress.conf这个文件是wordress的URL Rewrite,本身存在一些问题,如archive中,日期归档是打不开的。

正确写法如下:

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

感谢各位LNMP使用者对lnmp的支持。

5 Responses to LNMP一键安装包0.3中wordpress Rewrite(伪静态规则)正确写法

  1. kangzj says:

    是不是就是我反应的那个问题啊?

    licess Reply:

    @kangzj, 嗯

  2. kaman says:

    LNMP下面跑wp。。。。nginx一般开几个worker?每个worker给多少个链接?

    2个worker。。。每个1000个链接。。
    和4个workder。。。每个500个链接。。有什么区别?

  3. xorg says:

    为什么不把这个加进去?
    http://blog.licess.org/nginx_question1/

    licess Reply:

    @xorg, 这个lnmp0.3下没有问题,所以没必要加上。

发表评论

(required)

This site uses Akismet to reduce spam. Learn how your comment data is processed.