篇首语:本文由小常识网(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是一名非导演的主要内容,如果未能解决你的问题,请参考以下文章