방문자의 브라우저 언어가 중국어인 경우, 외국 사용자는 브라우저가 중국어가 아닌 경우 기본적으로 영어 페이지로 이동합니다.
<?php $lan = substr( $HTTP_ACCEPT_LANGUAGE,0,5); if ($lan == "zh-cn") print("<meta http-equiv='refresh' content = '0;URL = gb/index.htm'>"); else print("<meta http-equiv='refresh' content = '0;URL = eng/index.htm'>"); ?>
HTML 웹 페이지는 방문하는 브라우저의 언어에 따라 자동으로 다국어 페이지로 이동합니다
93f0f5c25f18dab9d176bd4f6de5d30e 사이에 다음 코드를 추가합니다.
인용된 내용은 다음과 같습니다.
<script> var type=navigator.appName if (type=="Netscape") var lang = navigator.language else var lang = navigator.userLanguage //cut down to first 2 chars of country code var lang = lang.substr(0,2) // 英语 if (lang == "en") window.location.replace('url') // 简体中文 else if (lang == "zh-cn") window.location.replace('url') // 繁体中文 else if (lang == "zh-tw") window.location.replace('url') // 德语 else if (lang == "de") window.location.replace('url') // 除上面所列的语言 else window.location.replace('url') </script>
위 내용은 웹페이지로 이동하기 위한 사용자 언어를 결정하는 PHP의 전체 내용입니다. 내용은 매우 간단합니다.