我低于conf允许我们公司networking内的用户访问该网站,而无需使用用户名或密码。
<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>
添加后,用户将看到提示input用户名和密码,但可以取消并访问该网站。 我怎样才能抑制提示?