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