标签:bre 配置文件 write 服务 解决方案 问题 mic 访问 uri
发现问题:WordPresss 首页,点开文章链接,返回404,无法查看
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;
}
}
systemctl restart nginx
wordpress配置固定链接nginx访问404问题解决方法
标签:bre 配置文件 write 服务 解决方案 问题 mic 访问 uri
原文地址:https://blog.51cto.com/13760351/2466291