wordpress配置固定链接nginx访问404问题解决方法
发现问题:
WordPresss 首页,点开文章链接,返回404,无法查看
解决方案:
1.修改配置文件
vim /etc/nginx/nginx.conf
server { listen 80; server_name www.ca.com; access_log /var/log/nginx/access.log main; location / { root /usr/share/nginx/html; 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; # 到这位置 location ~ \.php$ { root /www/data/xxx; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } }
2.重启服务
systemctl restart nginx
3.网页验证:解决问题
相关推荐
Wordpress0 2020-09-27
bluehost 2020-09-15
maccarty 2020-08-03
86520993 2020-07-28
WordPress 2020-07-04
李维山 2020-06-21
GimmeS 2020-06-14
WordPress 2020-06-10
shayuchaor 2020-06-10
liwf 2020-06-02
疯狂老司机 2020-05-26
zcl 2020-05-12
timewind 2020-05-11
86520993 2020-05-04
Lophole 2020-04-29
fraternityjava 2020-04-23
84911835 2020-04-16
maccarty 2020-04-09
WordPress 2020-04-07