1

.htaccess を使用して特定の国をブロックする簡単で信頼できる方法はありますか?

シンプルとは、IP 範囲のブロック リストがないことを意味します。これらは時々更新する必要があり、非常に長くなる可能性があります。

プロキシには適用されないことを理解しています。

4

1 に答える 1

1

Easiest is probably using the GeoIP Apache module. After installing and configuring you just need to do something like this in your htaccess file:

GeoIPEnable On
GeoIPDBFile /path/to/GeoIP.dat

SetEnvIf GEOIP_COUNTRY_CODE CN BlockCountry
SetEnvIf GEOIP_COUNTRY_CODE RU BlockCountry
# ... place more countries here

Deny from env=BlockCountry
于 2013-05-20T03:21:53.120 に答える