我正在使用示例中的代码“我如何将来自多个国家的用户分别重定向到多个页面?”,来自Geobytes的免费 JavaScript 。
如果来自英国或挪威的访问者正在查看我的网站,他会被重定向到专门为这些国家/地区制作的页面,但如果访问者来自任何其他国家/地区(澳大利亚、美国),他不会被重定向到这些国家/地区的页面;我的网站(正在建设中)仍然是空白的。
我希望能够将这些非英国非挪威用户发送到正确的站点。
我的示例代码:
<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.google.co.uk'>");
}
else if(Norway.indexOf(sCountryCode)>=0)
{
// Norway Visitors would go here
document.write("<META HTTP-EQUIV='Refresh' CONTENT='0; URL=http://www.google.no'>");
}
else
{
// World Visitors would go here
document.write("<META HTTP-EQUIV='Refresh' CONTENT='0; URL=http://www.google.com/ncr'>");
}
}
// }
</script>
</head>