index.html 580 B

123456789101112131415161718192021
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title></title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <meta http-equiv="Pragma" content="no-cache" />
  7. <meta http-equiv="Cache-Control" content="no-cache, must-revalidate" />
  8. <meta http-equiv="Expires" content="0" />
  9. </head>
  10. <body>
  11. </body>
  12. <script>
  13. var szLanguage = (navigator.language || navigator.browserLanguage).toLowerCase();
  14. szLanguage = szLanguage.substring(0, 2);
  15. if ("zh" === szLanguage) {
  16. window.location.href = "cn/demo.html";
  17. } else {
  18. window.location.href = "en/demo.html";
  19. }
  20. </script>
  21. </html>