只能打开首页,其他页面就显示404, not found on this server.
wordpress吧
全部回复
仅看楼主
level 2
只能打开首页,其他页面就显示404,找不到
Not Found
The requested URL /uncategorized/ was not found on this server.
2018年09月01日 01点09分 1
level 14
伪静态没设置好
2018年09月01日 02点09分 2
伪静态设置了,还是不行啊 LoadModule rewrite_module modules/mod_rewrite.so
2018年09月01日 04点09分
@虫子哦日记 nginx加一句try_files $uri $uri/ /index.php;试试(Apache无能为力)
2018年09月01日 04点09分
level 1
wordpress站nginx伪静态规则
location / {
index index.html index.php;
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;
2018年09月07日 02点09分 3
level 12
应该是后台开启了固定连接,但是服务器没有配置相应的伪静态规则
2018年09月07日 15点09分 4
level 14
可以试一下配置faatcgi
2018年09月08日 10点09分 5
1