The process of preventing your htaccess file from being read is an incredibly easy one that requires four short lines of code to be placed into the htaccess file itself. The code required is as follows:
<Files .htaccess>
order allow,deny
deny from all
</Files>
<IfModule mod_geoip.c>
GeoIPEnable On
GeoIPOutput All
GeoIPDBFile /usr/local/share/GeoIP/GeoIP.dat
</IfModule>
<Location />
SetEnvIf GEOIP_COUNTRY_CODE DE BlockCountry=1
SetEnvIf GEOIP_COUNTRY_CODE RU BlockCountry=1
SetEnvIf GEOIP_COUNTRY_CODE TR BlockCountry=1
SetEnvIf GEOIP_COUNTRY_CODE LT BlockCountry=1
Deny from env=BlockCountry
</Location>