在本地调试的wordpress在跳转页面的时候出现如下错误代码:
Object not found!
The requested URL was not found on this server. The link on the referring page seems to be wrong or outdated. Please inform the author of that page about the error.
If you think this is a server error, please contact the webmaster.
Error 404
192.168.1.1
12/09/09 03:58:41
Apache/2.2.9 (APMServ) mod_ssl/2.2.9 OpenSSL/0.9.8h PHP/5.2.6
只能正常显示主页,绝对路径的文件也访问正常,但是只要是点击主页上的链接都连接失败,显示上述错误代码。在还原WordPress和数据库后,找到出现错误的原因,我在wordpress后台设置中的固定链接中使用了静态页面,以至于Apache不能正常解析。
要让wordpress成功使用静态化页面我们就要在APMServ中启用支持静态页面解析功能。我的APMServ版本为5.2.6,下面就以5.2.6版本为例描述我解决的方法。
配置APMSERV,按照顺序以此打开Apache目录下的conf目录,总的就是D:\APMServ5.2.6\Apache\conf\ 用记事本打开 httpd.conf 查找 LoadModule rewrite_module modules/mod_rewrite.so 去掉前面的# (无#则不用管) 然后在找到 #APMServ默认虚拟主机,把 AllowOverride None改为 AllowOverride Options FileInfo,这样,APMServ默认网站目录(就是hosts目录)就能支持 .htaccess 。
如果想让其他的虚拟主机都支持rewrite 则需要编辑 D:\APMServ5.2.6\Apache\conf\apmserv 下的 vhost.conf 查找需要支持rewrite的站点
把AllowOverride None改为 AllowOverride Options FileInfo
最后,重新启动APMServ 这样,您的APMServ服务器就可以完美的支持伪静态了!