AMH 社区首页
AMH社区 - 开放自由有价值的社区
[综合话题] 求助(wordpress设置固定链接后404)我的环境是nginx,规则是控制面板自带的wordpress的规则 |
|
---|---|
fzpying |
fzpying 发表于 2017-01-10 11:08:49
求助(wordpress设置固定链接后404)我的环境是nginx,规则是控制面板自带的wordpress的规则
点赞,加油! (0分)
2017-01-10 11:08:49 1
|
playabby |
wordpress规则里最后加一行
rewrite /wp-admin$ $scheme://$host$uri/ permanent;
回复
2017-01-10 14:32:09 2
|
fzpying |
引用: 我试了还是不行呢! 我的是这样的哦! location / { 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; } if ($server_port = 80) { return 301 https://$host$request_uri; } if ($scheme = http) { return 301 https://$server_name$request_uri; } }
回复
2017-01-10 20:09:46 3
|
playabby |
AMH官方规则加我的最后一行
location / { 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;
回复
2017-01-11 08:52:04 4
|
playabby |
if ($server_port = 80) {
return 301 https://$host$request_uri; } if ($scheme = http) { return 301 https://$server_name$request_uri; 你这个加了2个重定向啊,去了吧。先解决网站访问问题,再解决重定向问题
回复
2017-01-11 08:53:03 5
|
playabby |
重定向可以参考这位同学的帖子
http://amh.sh/bbs/post-4986-1-1.htm
回复
2017-01-11 08:55:23 6
|
hongxw |
郁闷,我原本也可以做了,想再加一个域名备案,搞得现在所有域名不能用,都要重新备案。见鬼
回复
2017-01-13 16:06:50 7
|