nginx中配置emlog的rewrite规则

发布时间:2020-11-09编辑:脚本学堂
nginx中配置emlog的rewrite规则,在emlog站点的nginx配置文件里加入:
location / { index index.php index.html;

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

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

然后,重启nginx生效。