代码

# Nginx set WordPress /%postname%/
# 配置文件默认位于 [root@hexingxing conf.d]# pwd
# /etc/nginx/conf.d
# 如果默认使用 HTTPS ,则在 HTTPS 配置中添加,反之则在 nginx.conf 中添加。
location / {
root /www/abc.com;
index index.php index.html index.htm; 

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; #防止打开后台、插件页等打不开
#...

注意

如果使用了 https 配置,需要在 ssl https conf.d 配置文件中添加以上字段。


友情提示:本站所有文章,如无特殊说明或标注,均为何星星原创发布。与此同时,趋于近年来本站的文章内容频繁被他站盗用与机器采集,现已全局禁用网站文字内容操作,了解详情或转载文章请 点此 继续!

0 条评论

发表回复

Avatar placeholder

您的电子邮箱地址不会被公开。 必填项已用*标注