
以下の conf により、社内ネットワーク内のユーザーがユーザー ID やパスワードなしでサイトにアクセスできるようになります。
<Location />
Require valid-user
Order allow,deny
Allow from 1XX.2XX.0.0/16
Allow from 10.0.0.0/8
Allow from 127.0.0.1
Satisfy Any
AuthType Basic
AuthName "Enter your ID and password"
AuthBasicProvider ldap
Include /abc/httpd/conf/ldap_userinfo.conf
AuthLDAPGroupAttribute member
### Add application ldap-user/ldap-group below ###
Require ldap-group CN=AP-ABC-PREVIEWSITE-USERS,OU=GROUPS,OU=ABC INFRASTRUCTURE,DC=i,DC=abc,DC=com
ErrorDocument 401 "Please use correct id and password for access to this site"
</Location>
追加後、ユーザーにはユーザー ID とパスワードを入力するプロンプトが表示されますが、キャンセルをクリックしてサイトにアクセスできます。プロンプトも抑制するにはどうすればよいでしょうか?