我正在尝试设置我的localhost开发服务器。我有一切正常工作,但当我尝试添加.htaccess
时,它会抛出此错误:
Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, [no address given] and inform them of the time the error occurred, and anything you might have done that may have caused the error. More information about this error may be available in the server error log.
我不知道为什么会这样,这与其他开发者机器完全相同,但是当使用我的.htaccess文件时,我得到了这个错误。
这是我的.htaccess
文件(注意:它们已被评论,因为我使用此设置离开了我的网站。它只允许我查看索引页面。如果没有此.htaccess
文件,我可以导航。) :
这是我现在的.htaccess文件中唯一的内容,它会中断。
RewriteEngine On
答案 0 :(得分:0)
这部分看起来很有趣:
ErrorDocument 404 /404
应该是这样的:
ErrorDocument 404 /path/to/404error.htm
或类似的东西。如果它重定向到/ 404并且该目录不存在,那么您将拥有无限循环。
除此之外,我们可能还需要更多信息。您的错误日志中可能会有一些内容可以告诉您有关它的更多信息。
答案 1 :(得分:0)
使用......
Options +FollowSymLinks
... RewriteEngine On
之前。并检查您的vhost配置:
AllowOverride All
您可以从错误日志中获取更多信息,通常位于 apache / logs / error.log 中。