- <?php
- error_reporting(E_ALL^E_NOTICE);
- //分析HTTP_ACCEPT_LANGUAGE的屬性
- //這裡只取第一語言設置(其他可根據需要增強功能,這裡只做簡單的方法演示)
- preg_match('/^([a-z\-]+)/i',$_SERVER['HTTP_ACCEPT_LANGUAGE'],$matches);
- $lang=$matches[1];
- switch($lang){
- case'zh-cn':
- header('Location:http://cn.example.com/');
- break;
- case'zh-tw':
- header('Location:http://tw.example.com/');
- break;
- case'ko':
- header('Location:http://ko.example.com/');
- break;
- default:
- header('Location:http://en.example.com/');
- break;
- }
- ?>
複製代碼
全站熱搜
留言列表