nginx下wordpress固定链接设置后文章及内栏目页404错误解决方法

nginx下wordpress固定链接设置后文章及内栏目页404错误解决方法

nginx环境下wordpress设置好固定链接后,网站除了首页正常打开外,网站内栏目页和文章页打开全部为404。

原因:nginx配置文件conf设置出现了问题。

解决方法:打开conf文件(/usr/local/nginx/conf/nginx.conf)定位至server{}代码块,输入以下的内容:

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

即在server{}代码块中添加

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

在server{}代码块中的location / {}模块中添加

 try_files $uri $uri/ /index.php?$args;

最后重启nginx及相关的服务,就可以解决问题了。

./nginx -t ./nginx -s reload

IT技术资料分享-个人整理自互联网

 

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

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

相关推荐

发表回复

登录后才能评论