我希望能够做到这一点:
<LocationMatch ^/secret/(.+?)>
<Limit GET>
Require group member
</Limit>
<LimitExcept GET>
Require group member
Require group contributor
</LimitExcept>
</LocationMatch>
“要求组”让您建议使用 OR 考虑的许多组;我需要某种 AND。 全部满足似乎仅在与 Allow 一起使用时才影响 Require。
有没有办法用 Require/AND 控制组成员?
(我应该指出,我们使用 Atlassian Crowd 的 Perl 模块作为我们的组提供者,所以如果可以在处理程序中实现它,那也可以。)