crorBroopycow
New Member
My visitors are sent to Norway or UK page but if they are outside of these countries they are not redirected to page for people from other countries .please help me out.\[code\] <head> <script language="Javascript" src="http://gd.geobytes.com/Gd?after=-1"></script> <script language="javascript"> var UK="UK"; var Norway="NO"; if(typeof(sGeobytesLocationCode)!="undefined") { var sCountryCode=sGeobytesLocationCode.substring(0,2); if(UK.indexOf(sCountryCode)>=0) { // UK Visitors would go here document.write("<META HTTP-EQUIV='Refresh' CONTENT='0; URL=http://www.aBritishwebsite.com'>"); } else if(Norway.indexOf(sCountryCode)>=0) { // Norway Visitors would go here document.write("<META HTTP-EQUIV='Refresh' CONTENT='0; URL=http://www.aNorwaywebsite.com'>"); }else { // World Visitors would go here document.write("<META HTTP-EQUIV='Refresh' CONTENT='0; URL=http://worldvisitors.com'>"); } } // } </script> </head>\[/code\]