PHP开发常见问题解决列表
1. 学习Zend Framework tutorial过程中的问题
(1)执行"zf create project zf-tutorial"出现如下错误:
'"php.exe"' is not recognized as an internal or external command, operable program or batch file.
解决办法:原因是因为php.exe所在的路径没有加到系统环境变量Path中。加入后即可解决。
(2)访问http://localhost/zf-tutorial/public时出现403Forbidden错误。这个问题搞了我很久,最后发现是public下的.htaccess配置不当造成的,将文件内容替换为如下就可以解决了。目前源文件配置较为复杂,没看懂,先解决问题再继续研究。
RewriteEngine on
RewriteRule !\.(js|ico|gif|jpg|png|css)$ index.php
如对本文有疑问,请提交到交流论坛,广大热心网友会为你解答!! 点击进入论坛