Skip to content

Commit 7982991

Browse files
committed
feat: 404 redirect
1 parent 44b8921 commit 7982991

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

out/404.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<!-- https://theorangeone.net/posts/redirecting-static-pages/ -->
6+
<title>404 Not Found</title>
7+
<link rel="canonical" href="/" />
8+
<meta http-equiv="refresh" content="0; url=/">
9+
<script>window.location.href="/"</script>
10+
</head>
11+
<body>
12+
<a href="/">Redirect failed?</a>
13+
</body>
14+
</html>

0 commit comments

Comments
 (0)