我的目录根目录中有一个 .htaccess 文件,如下所示。clients.php 文件授予 htgroups 文件中不在 admins 组中的用户的访问权限。
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www......com/dts/$1 [R,L]
AuthGroupFile /usr/local/..../htgroup
AuthType Basic
Require group producers
<Files clients.php>
Require group admins
</Files>
它要求人们进行身份验证并加入该生产者组(所有管理员也在生产者中),但它让不在管理员行的人打开 clients.php 文件。