网站地图    收藏   

主页 > 后端 > wordpress教程 >

解决wordpress修改固定链接页面出现404错误问题

来源:自学PHP网    时间:2014-11-28 23:41 作者: 阅读:

[导读] 有不少朋友会发现在使用wordpress博客时修改固定链接后不能访问文章问题,或者访问时提示404错误提示了,这个就是页面不存在了,也就是rewrite功能没配置好了,我们只要按下文章设置即可解...

解决wordpress修改固定链接页面出现404错误问题

有不少朋友会发现在使用wordpress博客时修改固定链接后不能访问文章问题,或者访问时提示404错误提示了,这个就是页面不存在了,也就是rewrite功能没配置好了,我们只要按下文章设置即可解决.

如果你的Apache、PHP、Mysql系统架构是自己配置的,或使用的某些安装包,可能会有这个问题,具体解决办法如下:

(1)Apache中的rewrite模块没有开启,在配置文件httpd.conf中去除这一行前面的#号就可以了.

#LoadModule rewrite_module modules/mod_rewrite.so

变为:

LoadModule rewrite_module modules/mod_rewrite.so

(2)AllowOverride Not Enabled 

服务器可能没打开AllowOverride,如果Apache中配置文件httpd.config的AllowOverride设置的是None,那.htaccess将被忽略.

正确的设置,代码如下:

  1. Directory / 
  2. Options FollowSymLinks 
  3. AllowOverride All 
  4. # Order deny,allow 
  5. # Deny from all 
  6. /Directory 

也需要在DocumentRoot打开AllowOverride,代码如下:

  1. Directory “D:/wamp/www/” 
  2. # Possible values for the Options directive are “None”, “All”, 
  3. # or any combination of: 
  4. # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews 
  5. # Note that “MultiViews” must be named *explicitly* — “Options All” 
  6. # doesn’t give it to you. 
  7. # The Options directive is both complicated and important. Please see 
  8. # http://httpd.apache.org/docs/2.2/mod/core.html#options 
  9. # for more information. 
  10. Options Indexes FollowSymLinks 
  11. # AllowOverride controls what directives may be placed in .htaccess files. 
  12. # It can be “All”, “None”, or any combination of the keywords: 
  13. # Options FileInfo AuthConfig Limit 
  14. AllowOverride all 
  15. # Controls who can get stuff from this server. 
  16. # onlineoffline tag – don’t remove 
  17. # Order Allow,Deny 
  18. # Allow from all 
  19. /Directory 

注意,以上修改完成后,要重启Apache才能生效.

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论