当前位置: > Linux服务器 > nginx >

nginx中配置emlog的rewrite规则

时间:2014-07-05 13:20来源:linux.it.net.cn 作者:IT网

nginx中配置emlog的rewrite规则,在emlog站点的nginx配置文件里加入:
 

复制代码代码如下:
location / {
        index index.php index.html;
        if (!-e $request_filename)
        {
                rewrite ^/(.+)$ /index.php last;
        }
}
 

然后,重启nginx生效。

(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容