apache_conf Denegar el acceso是一名非导演

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了apache_conf Denegar el acceso是一名非导演相关的知识,希望对你有一定的参考价值。

# DENEGAR EL ACCESO (EXTERNO) A UN DIRECTORIO
<Limit GET>
 Order Deny,Allow
 Deny from all
</Limit>

# Para Apache 2.4 debemos usar lo siguiente:
# Require all denied


# PARA PODER AUTORIZAR SOLAMENTE LAS DIRECCIONES IPs QUE NOSOTROS QUERAMOS, TENEMOS QUE HACERLO CON EL SIGUIENTE CÓDIGO:
<Limit GET>
 Order Deny,Allow
 Deny from all
 Allow from 192.168.1.10 192.168.1.11 
</Limit>

# Para Apache 2.4 debemos usar lo siguiente:
# Require ip xxx.xxx.xxx.xxx


# PARA EL CASO CONTRARIO, ES DECIR, PERMITIR EL ACCESO A TODO EL MUNDO, MENOS A DETERMINADAS IPs EL CÓDIGO SERÍA EL SIGUIENTE:
Order deny, allow
Allow from All
Deny from xxx.xxx.xxx.xxx

# Para Apache 2.4 debemos usar lo siguiente:
# Require not ip xxx.xxx.xxx.xxx

以上是关于apache_conf Denegar el acceso是一名非导演的主要内容,如果未能解决你的问题,请参考以下文章

apache_conf Protege el archivo .htaccess

apache_conf Cambiar el Huso horario是UTC的

apache_conf Evita el SPAM en comentarios desde .htaccess

apache_conf Desactiva el TRACE de HTTP y TRACK

apache_conf Restringe el accesoaláreadeadministración(仪表板)

apache_conf Configurar el Mercury / 32 del Xampp para enviar correos externos