.htaccess/.htpasswd 500 Internal Server Error

后端 未结 6 1061
暗喜
暗喜 2020-12-13 17:14

I\'m working on blocking a folder with .htaccess, which I\'ve never used before, and I\'m having some trouble. Here\'s what I have

.htaccess (located in the folder I

6条回答
  •  南方客
    南方客 (楼主)
    2020-12-13 17:53

    Most likely problem is this line:

    AuthUserFile /.htpasswd 
    

    This line should provide full filesystem path to the password file e.g.

    AuthUserFile /var/www/.htpasswd 
    

    To discover your filesystem path, you can create a PHP document containing

    echo $_SERVER['DOCUMENT_ROOT'];

提交回复
热议问题