在Nginx上配置wordpress URL rewrite的通用规则

之前介绍的URL rewrite规则有可能会对多层结构的目录支持的不好,所以我就找了下面这个更简单的写法,可以通用目录和文件。
引用
if (!-e $request_filename) {
    rewrite ^(.+)$ /index.php?q=$1 last;
}

这条规则就是把所有不存在的文件或者目录都转发到index.php

原帖地址: http://lveyo.info/wordpress-url-rewrite-on-nginx-2.html

猜你喜欢

转载自lveyo.iteye.com/blog/698879
今日推荐