-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
45 lines (40 loc) · 1.38 KB
/
Copy path404.html
File metadata and controls
45 lines (40 loc) · 1.38 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--
Catches root-level paths that do not exist here and forwards them to the
same path under /maildev/, so a guessed URL like
maildev.github.io/docs/quickstart/ lands correctly.
This is a convenience only, not an SEO mechanism: GitHub Pages serves
this file with a 404 status, so it passes no ranking signal. Paths under
/maildev/ never reach this file — the project page owns that prefix and
serves its own 404 — so there is no redirect loop.
-->
<meta http-equiv="refresh" content="0; url=https://maildev.github.io/maildev/" />
<title>Redirecting — MailDev</title>
<meta name="robots" content="noindex" />
<script>
var path = location.pathname.replace(/^\/+/, '')
location.replace(
'https://maildev.github.io/maildev/' + path + location.search + location.hash
)
</script>
<style>
body {
font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
margin: 4rem auto;
max-width: 32rem;
padding: 0 1.5rem;
line-height: 1.6;
}
</style>
</head>
<body>
<p>
Redirecting to
<a href="https://maildev.github.io/maildev/">maildev.github.io/maildev</a>…
</p>
</body>
</html>