1,基于php的方法:
复制代码 代码示例:
error_reporting(E_ALL ^ E_NOTICE);
// 分析 HTTP_ACCEPT_LANGUAGE 的属性
// 这里只取第一语言设置 (其他可根据需要增强功能)
//搜索整理 www.jbxue.com
preg_match('/^([a-z\-]+)/i', $_SERVER['HTTP_ACCEPT_LANGUAGE'], $matches);
$lang = $matches[1];
switch ($lang) {
case 'zh-cn' :
header('Location: http://cn.jbxue.com/');
break;
case 'zh-tw' :
header('Location: http://tw.jbxue.com/');
break;
case 'ko' :
header('Location: http://ko.jbxue.com/');
break;
default:
header('Location: http://en.jbxue.com/');
break;
}
?>
2,基于JS的方法:
复制代码 代码示例:
有兴趣的朋友,分别进行下测试吧,看看哪个更好用哦。