Thanks for the input, Ozzy :up:
While thinking about that I`d to notice, that redirecting visitors from i.e. country en-US to /en-US would redirect even the GoogleBots, which would have an impact to all the other sites regarding SEO and SERPs and would make BigG stop to crawl those sites. Beside that I?m really not quite sure, wether Google would call this cloaking or not..
In the end I guess I should try to redirect human visitors by the language informations in the head of the browser:
PHP Code:
RewriteCond %{HTTP:Accept-language} en-US [NC]
RewriteRule ^$ /en-US [L,R=301]
Hope that will do the trick for humans. And hopefully the bots don?t change to us-IP?s..
--------------- Added [DATE]1388072353[/DATE] at [TIME]1388072353[/TIME] ---------------
Quote:
Originally Posted by ozzy47
Or you can try by blocking the country code.
Code:
SetEnvIf CF-IPCountry CN BuzzOff=1
SetEnvIf CF-IPCountry RU BuzzOff=1
SetEnvIf CF-IPCountry IN BuzzOff=1
Order allow,deny
Allow from all
Deny from env=BuzzOff
In this example, notice "CN", "RU" and "IN" in the first three lines. These stand for China, Russia and India. Edit those to suit your needs (and add or remove as many lines as you like) by consulting the list of internet country abbreviations.
|
Ozzy,
I?m now adding country after country into that..and somehow it feels like becoming a racist while excluding all those countries. Does it work even the other way like this?
PHP Code:
SetEnvIf CF-IPCountry DE BuzzOff=1
SetEnvIf CF-IPCountry UK BuzzOff=1
SetEnvIf CF-IPCountry US BuzzOff=1
Order allow,deny
Deny from all
Allow from env=BuzzOff
May sound dumb, but I?ve never heard about that BuzzOff before..