CINXE.COM
<html> <head> <script> let default_loc = "en"; const loc_map = { "zh": "zh-cn", "ja": "ja", "nl": "nl", "fr": "fr", "de": "de", "pt": "pt", "es": "es", "it": "it" }; let prefix = "/" + default_loc; let req_path = (location.pathname || '/') + (location.search || ''); let lang = (window.navigator.language || '').substr(0, 2); if (lang && loc_map[lang]) { prefix = "/" + loc_map[lang]; } location.href = prefix + req_path + location.hash; </script> </head> <body></body> </html>