아파치 인증 - 네트워크 내에서 사용자를 억제하거나 우회하는 방법

아파치 인증 - 네트워크 내에서 사용자를 억제하거나 우회하는 방법

우리 회사 네트워크 내의 사용자가 사용자 ID나 비밀번호 없이 사이트에 액세스할 수 있도록 허용하는 아래 conf가 있습니다.

    <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와 비밀번호를 입력하라는 메시지가 표시되지만 취소를 누르고 사이트에 액세스할 수 있습니다. 프롬프트도 표시하지 않으려면 어떻게 해야 합니까?

관련 정보