在 apache 中编辑 htaccess 文件

在 apache 中编辑 htaccess 文件

我想拒绝所有 IP 地址但允许一个特定的 IP 地址.htaccess

我应该如何配置我的.htaccess或者它是一个不同的文件?

我有 CentOS 5 和 Apache。

答案1

<Directory /directory_name>
    Order Deny,Allow
    Deny from all
    Allow from 1.2.3.4
</Directory>

相关内容