Apache: “AuthType not set!” 500 Error

后端 未结 6 1050
独厮守ぢ
独厮守ぢ 2021-01-30 02:10

It\'s been a while since I used the Apache httpd web server. I\'m firing up a local server for a project and when I try to request localhost/index.html, I get a 500 error and I

6条回答
  •  栀梦
    栀梦 (楼主)
    2021-01-30 02:30

    Alternatively, this solution works with both Apache2 version < 2.4 as well as >= 2.4. Make sure that the "version" module is enabled:

    a2enmod version
    

    And then use this code instead:

    
        Allow from all
    
    = 2.4>
        Require all granted
    
    

提交回复
热议问题