動依他的語言轉到不同頁面
程式碼:
if(strstr($HTTP_ACCEPT_LANGUAGE,"zh-cn")) {
Header("Location: http://38.com/test-rd/cn.htm");
}
elseif(strstr($HTTP_ACCEPT_LANGUAGE,"zh-tw")) {
Header("Location: http://38.com/test-rd/tw.htm");
}
elseif(strstr($HTTP_ACCEPT_LANGUAGE,"zh-hk")) {
Header("Location: http://38.com/test-rd/hk.htm");
}
elseif(strstr($HTTP_ACCEPT_LANGUAGE,"en")) {
Header("Location: http://38.com/test-rd/en.htm");
}
elseif(strstr($HTTP_ACCEPT_LANGUAGE,"en-us")) {
Header("Location: http://38.com/test-rd/enie.htm");
}
else {Header("Location: http://38.com/test-rd/no.htm");
}
?>
測試網址: http://38.com/test-rd/rd.php
|