Hello! 欢迎来到盒子萌!

wordpress更改 固定链接后 出现404原因及解决方法


avatar
嘉木 2014-05-24 112

找到 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

  • avatar
    游客

    话说小寂的域名是怎么想出来的?

发表评论