我的密码保护目录不工作。我已经.htaccess
在目录中设置了文件以使其受到保护。我已将.htpasswd
文件放在根目录中。在 .htaccess 中设置 .htpasswd 的路径,但在输入真实密码后它仍然要求输入密码。我已将加密密码放入 .htpasswd。
我的 .htaccess 代码
AuthName "Please Login"
AuthType Basic
AuthUserFile /home/.htpasswd
require valid-user
我的 .htpasswd 代码是这样的
user:encryptedpassword
请告诉我我做错了什么或者我应该检查什么