Apache:“AuthType未设置!”500错误

时间:2016-05-31 14:41:40

标签: apache apache-config

自从我在Windows中使用Apache httpd Web服务器以来已经有一段时间了。 当我尝试请求localhost / index.html时,我收到500错误,我在错误日志中看到了这一点:

  

[client 127.0.0.1]配置错误:无法执行身份验证。 AuthType未设置!:/

我的httpd.conf中的这一行可能会涉及。

 <Directory />
    Options FollowSymLinks
    AllowOverride All
    Require all granted
 </Directory>

我的apache版本是2.2
操作系统:Windows 7 我该如何解决这个500错误?

1 个答案:

答案 0 :(得分:5)

删除第Require all granted行。

版本&lt; 2.4中的

Allow from all相当于2.4 {的Require all granted