redirect.html 314 B

12345678910111213
  1. <head>
  2. <script type="text/javascript">
  3. (function(){
  4. var ls = navigator.languages;
  5. for(var i in ls){
  6. if(ls[i].startsWith("en")) {location.href="en/index.html#";return;}
  7. if(ls[i].startsWith("zh")) {location.href="zh/index.html#";return;}
  8. }
  9. location.href="en/index.html#";
  10. })();
  11. </script>
  12. </head>