uweb/redirect.html

11 lines
286 B
HTML
Raw Normal View History

<head>
<script type="text/javascript">
var ls = navigator.languages;
for(var i in ls){
if(ls[i].startsWith("en")) {location.href="en/index.html";break;}
if(ls[i].startsWith("zh")) {location.href="zh/index.html";break;}
}
2024-03-23 02:50:14 +00:00
location.href="en/index.html";
</script>
</head>