-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (22 loc) · 716 Bytes
/
index.html
File metadata and controls
29 lines (22 loc) · 716 Bytes
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
26
27
28
29
<!DOCTYPE html>
<html>
<head>
<!-- meta http-equiv="Refresh" content="0; url=./ebooks/cham-toi-ai-trong-10-ngay.html" / -->
<script type="text/javascript">
var url = 'https://myworkspace.vn/sitemap.xml';
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.status == 200) {
window.location.href = 'https://myworkspace.vn'; //relative to domain
} else {
window.location.href = './ebooks/cham-toi-ai-trong-10-ngay.html'; //relative to domain
}
};
xhttp.open("GET", url, true);
xhttp.send();
</script>
</head>
<body>
<h1>Đang chuyển đến trang giới thiệu ebook "Chạm tới AI trong 10 ngày" của Lê Ngọc Thạch</h1>
</body>
</html>