我想知道我是否可以合并组和特定用户授权。
我的 httpd.conf 中有类似的内容:
<Directory /path/to/dir>
AuthType Basic
AuthName "Private pages"
AuthBasicProvider file
AuthUserFile /path/to/dir/.htpasswd
AuthGroupFile /path/to/dir/.htgroup
Require user user1 user2 user3
Require group group1 group2
</Directory>
然后我从浏览器访问它。我使用 user1,但没有成功,并且在 error_log 中出现错误:
Authorization of user user1 to access /path/to/dir failed, reason: user is not part of the 'require'ed group(s).
我可以做吗?