gpt4 book ai didi

apache - 动态 IP .htaccess 阻止列表?

转载 作者:行者123 更新时间:2023-12-04 02:06:21 25 4
gpt4 key购买 nike

是否可以使用基于文件的动态阻止列表阻止用户访问 IP 地址?

所以,假设 .htaccess 看起来像:

order Deny,Allow
Deny from 123.156.0.1
Deny from 10.0.0.10
Allow from all

这个列表可以动态化吗,例如:
order Deny,Allow
[include Deny list here]
Allow from all

另一个选择当然是用 PHP 修复它,但最好让 Apache 处理它。

最佳答案

根据Apache docs ,似乎无法从文本文件中读取值。

但是,您可以 include 包含 IP 地址的配置文件。不过,它们必须采用 Apache 的 conf 文件格式。

这应该有效:

order Deny,Allow
include conf/IPList.conf
Allow from all

甚至可以到 include整个目录,即使不推荐。

关于apache - 动态 IP .htaccess 阻止列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3165804/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com