如何解决wordpress本地测试Object not found的问题
1. 问题描述
最近在帮一个企业做网站, 决定使用wordpress搭建.
在公司用phpnow进行本地测试的时候很正常, 回家以后用appserver进行本地测试的时候, 却除了问题:
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 pageabout the error.
If you think this is a server error, please contact the webmaster.
Error 404
127.0.0.1
12/10/11 15:18:08
Apache/2.2.9 (APMServ) mod_ssl/2.2.9 OpenSSL/0.9.8h PHP/5.2.6
经过一番研究, 发现这种情况只出现在使用固定链接的时候, 如果使用wordpress的默认链接就没有上述问题.
2. 如何解决问题
a. 找到并打开Apache\conf\httpd.conf;
b. 搜索AllowOverride None,把它们全部替换成AllowOverride All;
c. 然后保存, 并把Apache重新启动一下以让其生效。
通过上面一番操作, 问题解决了...