nginx下emlog伪静态规则
帮普森设置博客伪静态,服务器环境为lnmp。伪静态规则为
location / {
index index.php index.html;
if (!-e $request_filename)
{
rewrite ^/(.+)$ /index.php last;
}
}
- 版权申明:此文如未标注转载均为本站原创,自由转载请表明出处《江湖博客》。
- 本文网址:http://jqq.l58.top/Linux/56.html
- 上篇文章:Linux 配置源码安装的MySQL同时支持多个字符集
- 下篇文章:nginx支持.htaccess文件实现伪静态的方法