WordPress在Nginx环境下设置伪静态方法

WordPress是一个功能比较强大的程序,也是比较受欢迎的程序,而Nginx是一个高性能的web服务器。今天…

WordPress是一个功能比较强大的程序,也是比较受欢迎的程序,而Nginx是一个高性能的web服务器。今天为大家分享一个WordPress在Nginx环境下设置伪静态方法。

WordPress在Nginx环境下设置伪静态方法 (https://www.wpmee.com/) WordPress使用教程 第1张
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;

}

}

rewrite /wp-admin$ $scheme://$host$uri/ permanent;

重启你的nginx即可

类别:WordPress函数讲解

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册