我将AuthType Basic方法转换为AuthType Digest方法时遇到问题。我真的不确定如何开始。
这是我的htaccess文件,我有3个页面,只有指定的用户才能访问它。但是我想将AuthType Basic更改为AuthType Digest,但它给了我一个错误。
AuthUserFile "/xampp/htdocs/lab1/.htpasswd"
AuthName "Please log in"
AuthType Basic
<Files A1.htm>
require user John
</Files>
<Files A2.htm>
require user John Nancy
</Files>
<Files A3.htm>
require user Randy
</Files>
.htpasswd
John:123
Nancy:123
Randy:123
答案 0 :(得分:0)
您需要做的不仅仅是将AuthType
从Basic
更改为Digest
。您需要使用htdigest tool创建新的htpassword文件。
有关详细信息,请参阅此tutorial。