自从我在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错误?
答案 0 :(得分:5)
删除第Require all granted
行。
Allow from all
相当于2.4 {的Require all granted
。