lnmp环境wordpress如何实现伪静态|lnmp下WordPress的Nginx伪静态规则

  • A+
所属分类:网络技术

LNMP登录FTP 在
/usr/local/nginx/conf/vhost/域名.conf

编辑conf如下图添加位置

lnmp环境wordpress如何实现伪静态|lnmp下WordPress的Nginx伪静态规则

location / {
index index.html index.php;
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;
}
}

执行:/etc/init.d/nginx restart 重启生效,如果报错可能是添加有误或伪静态规则有误。
上面是本人亲测有效的。
本文为原创,如需转载请标注本站链接:www.fourye.com