0

これはディレクトリ内の私のhtaccessファイルです/home/domain.nl/public_html/helpdesk

Require user agent8 agent9 agent10 
AuthType     Basic
AuthName     this_protected_area
AuthUserFile /home/domain.nl/public_html/.htpasswd

しかし、domain.nl / helpdeskにアクセスすると、324エラー(ERR_EMPTY_RESPONSE)が発生しました。では、何が問題なのですか?htpasswdファイルが正しい場所にあると確信しています。

エラーログに次のエラーが表示されます。

(13)Permission denied: Couldn't read /home/domain.nl/public_html/errors/.htaccess, closing connection.
4

2 に答える 2

0

Try changing your .htaccess with this:

Require valid-user
AuthType     Basic
AuthName     this_protected_area
AuthUserFile /home/domain.nl/public_html/.htpasswd

Make sure .htaccess is enabled and if that doesn't work pls copy/paste relevant section of your error.log file in your question.

于 2012-10-16T09:31:34.353 に答える
0

I renamed the public_html/errors/ dirrectory to errors2 and its working now. Thanks for helping!

于 2012-10-16T09:52:45.500 に答える