mirror of
https://github.com/torappinfo/uweb.git
synced 2026-03-14 14:45:45 +01:00
13 lines
292 B
HTML
13 lines
292 B
HTML
<head>
|
|
<script type="text/javascript">
|
|
(function(){
|
|
var ls = navigator.languages;
|
|
var url = "en/index.html#";
|
|
for(var i in ls){
|
|
if(ls[i].startsWith("en")) break;
|
|
if(ls[i].startsWith("zh")) {url="zh/index.html#";break;}
|
|
}
|
|
location.replace(url);
|
|
})();
|
|
</script>
|
|
</head>
|