.htaccess を使用して特定の国をブロックする簡単で信頼できる方法はありますか?
シンプルとは、IP 範囲のブロック リストがないことを意味します。これらは時々更新する必要があり、非常に長くなる可能性があります。
プロキシには適用されないことを理解しています。
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