Como negar acesso no país especificado e permitir somente com autenticação de senha via .htaccess

1

Eu preciso negar o acesso em um site em um país específico, mas permitir ignorar via autenticação .htaccess

Eu encontrei este site link

onde eu posso baixar um .htaccess que nega o acesso de um país específico, mas não tenho certeza se é possível adicionar a capacidade de prosseguir com um usuário / senha

<Limit GET HEAD POST>
order allow,deny
allow from all
deny from 123.456.789.0/255 
</Limit>

colocar isso na pasta raiz também negaria o acesso ao Google Robots fora desse país?

    
por al404IT 20.07.2017 / 15:04

1 resposta

1

Você observou a diretiva "satisfied"?:

The Satisfy directive can be used to specify that several criteria may be considered when trying to decide if a particular user will be granted admission. Satisfy can take as an argument one of two options - all or any. By default, it is assumed that the value is all. This means that if several criteria are specified, then all of them must be met in order for someone to get in. However, if set to any, then several criteria may be specified, but if the user satisfies any of these, then they will be granted entrance.

link

    
por 20.07.2017 / 15:14