-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path404.html
More file actions
25 lines (25 loc) · 883 Bytes
/
404.html
File metadata and controls
25 lines (25 loc) · 883 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="refresh" content="0; url=https://mapsmessaging.io/" />
<meta name="robots" content="noindex,follow" />
<link rel="canonical" href="https://mapsmessaging.io/" />
<title>Redirecting…</title>
<script>
(function() {
try {
// For deep links, GitHub Pages serves 404.html; preserve full path
var path = (location.pathname || "").replace(/^\/maps-messaging-site\/?/, "");
var dest = "https://mapsmessaging.io/" + path + (location.search || "") + (location.hash || "");
window.location.replace(dest);
} catch (e) {
window.location.replace("https://mapsmessaging.io/");
}
})();
</script>
</head>
<body>
<p>Redirecting… If nothing happens, <a href="https://mapsmessaging.io/">go to mapsmessaging.io</a>.</p>
</body>
</html>