-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path404.html
25 lines (25 loc) · 920 Bytes
/
404.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>redirecting to docs.pawsql.com</title>
</head>
<script language="javascript">
let lan = navigator.systemLanguage || navigator.language;
var lang = "en";
if(lan.toLowerCase().indexOf('zh')!==-1){
console.log('当前浏览器默认语言为中文');
lang = "zh";
}
var domain = "docs.pawsql.com";
var current = window.location.href;
var target = current.substring(current.indexOf('/', current.indexOf(':') + 3));
window.location.href = "//" + domain + "/" + lang + target;
location.href = "//" + domain + "/" + lang + target;
</script>
<body>
redirecting to docs.pawsql.com ...
<div><a href="https://docs.pawsql.com/zh/">PawSQL中文文档</a></div>
<div><a href="https://docs.pawsql.com/en/">PawSQL Document</a></div>
</body>
</html>