码迷,mamicode.com
首页 > 其他好文 > 详细

wordpress设置“固定链接”后,页面404错误的解决方法

时间:2017-07-26 02:01:26      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:height   oct   led   lin   strong   去除   ati   www   位置   

Nginx 解决方案:

网上盛传的方法是:

在 /etc/nginx/nginx.conf文件的 loction / {} 中添加

技术分享
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;
}
技术分享

特别注意:这种设置方法小编测试是无效的,会导致网站排版乱码。

正确的设置方式是loction / {}中添加配置:

技术分享
#加入如下一条命令即可
try_files $uri $uri/ /index.php?$args;
技术分享

修改完成后重启Nginx服务器生效。

service nginx restart

Apache解决方案:

/etc/httpd/conf/httpd.config 文件

原因一:Apache中的rewrite模块没有开启,去除这一行前面的#号就可以了

LoadModule rewrite_module modules/mod_rewrite.so

原因二:AllowOverride Not Enabled;服务器可能没打开AllowOverride。如果httpd.config的AllowOverride设置的是None,那.htaccess将被忽略。找到以下2处位置并修改:

<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory /var/www/html>
# … other directives…
AllowOverride All
</Directory>

修改完成后,要重启Apache才能生效。

service httpd restart

wordpress设置“固定链接”后,页面404错误的解决方法

标签:height   oct   led   lin   strong   去除   ati   www   位置   

原文地址:http://www.cnblogs.com/whiterock/p/7232383.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!