Hi. I have installed this module: [
maxmind.com...]
It is working ok.
But i want to redirect the people who only visits homepage.
Forexample: Anyone from Italy who visits domain.com should be redirected to domain.com/it
But if they visit domain.com/thread.html, then they should not be redirected to anywhere.
The current default htaccess code that i use is this.
GeoIPEnable On
GeoIPDBFile /path/to/GeoIP.dat
# Redirect one country
RewriteEngine on
RewriteCond %{ENV:GEOIP_COUNTRY_CODE} ^IT$
RewriteRule ^(.*)$ http://www.italy.com$1 [L]
But it redirects visitors from Italy to another domain even if they are visiting domain.com/thread.html
Can anyone help me with the correct htaccess code ?
Sorry for poor english.