Apache:“AuthType 未设置!” 500 错误
Apache: “AuthType not set!” 500 Error
我已经有一段时间没有在 windows 中使用 Apache httpd 网络服务器了。
当我尝试请求 localhost/index.html 时,我收到 500 错误,我在错误日志中看到:
[client 127.0.0.1] configuration error: couldn't perform authentication. AuthType not set!: /
我的这一行httpd.conf可能涉及
<Directory />
Options FollowSymLinks
AllowOverride All
Require all granted
</Directory>
我的apache版本是2.2
OS : windows 7
我该如何解决这个 500 错误?
删除行 Require all granted
.
Allow from all
在版本 <2.4 中相当于 Require all granted
对于 2.4+。
我已经有一段时间没有在 windows 中使用 Apache httpd 网络服务器了。 当我尝试请求 localhost/index.html 时,我收到 500 错误,我在错误日志中看到:
[client 127.0.0.1] configuration error: couldn't perform authentication. AuthType not set!: /
我的这一行httpd.conf可能涉及
<Directory />
Options FollowSymLinks
AllowOverride All
Require all granted
</Directory>
我的apache版本是2.2
OS : windows 7
我该如何解决这个 500 错误?
删除行 Require all granted
.
Allow from all
在版本 <2.4 中相当于 Require all granted
对于 2.4+。