我刚在笔记本电脑上安装了zend框架。当我使用wamp server 2.0打开index.php文件时。我收到了这个错误 内部服务器错误
服务器遇到内部错误或配置错误,无法完成您的请求。
请与服务器管理员admin @ localhost联系,告知他们错误发生的时间,以及可能导致错误的任何操作。
服务器错误日志中可能提供了有关此错误的更多信息。 有人可以帮我解决这个错误。谢谢你的帮助。
答案 0 :(得分:2)
检查您是否在httpd.conf中加载了重写模块。
LoadModule rewrite_module modules/mod_rewrite.so
将此部分添加到httpd.conf
<Directory "{your document root}">
Options FollowSymLinks
AllowOverride All
</Directory>