apache2.2.22 configuration error: couldn't perform authentication. AuthType not set!: /

configuration error:  couldn't perform authentication. AuthType not set!: /  500服务器错误


解决方案:

<Directory />
    Require all granted
</Directory>

将“Require all granted”删除……

出现 403 forbidden

解决方案:

<Directory />
AllowOverride none
Allow from all
</Directory>


原文地址:https://www.cnblogs.com/lianruihong/p/7634662.html