nginx下wordpress开启全站https出现所有栏目页为404问题的解决方法

nginxwordpress开启全站https后打开所有的栏目页为404

解决方法:

打开nginx的配置文件nginx.conf,在http和https对应的server{}块中加入

location / {      try_files $uri $uri/ /index.php?$args;  }  # Add trailing slash to */wp-admin requests.  rewrite /wp-admin$ $scheme://$host$uri/ permanent;

解决问题。

 

https://www.lmdouble.com/2352132056.html

 

原创文章,作者:306829225,如若转载,请注明出处:https://blog.ytso.com/243504.html

(0)
上一篇 2022年4月11日
下一篇 2022年4月11日

相关推荐

发表回复

登录后才能评论