How PHP automatically jumps to Chinese and English pages

Source: Internet
Author: User

How PHP automatically jumps to the Chinese and English pages:

The code is as follows:

Print ("<meta  http-equiv= ' Refresh '  content =  ' 0; Url = gb/index.htm ' > ');   
else  
Print ("<meta http-equiv=" Refresh '  content =  ' 0; Url = eng/index.htm ' > ');   
? >  
HTML Web page different automatic jump multilingual page According to the browser language of the visit   &NBSP
Add the following code between   <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)   
//  English   
if  (lang ==  "en")   
window.location.replace (' url ')   
//  Simplified Chinese   
else if  (lang ==   "ZH-CN")   
window.location.replace (' url ')   
//  Traditional Chinese   
Else  if  (lang ==  "ZH-TW")   
window.location.replace (' url ')   
//   German   
else if  (lang ==  "de")   
Window.location.replace (' URL ')   
//  except for the languages listed above   
else  
window.location.replace (' url ')   &NBSP
</script>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.