forked from fluidattacks/makes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(build): fluidattacks#1135 fix url redirection
- override 404 html page to redirect to main page Signed-off-by: Robin Quintero <[email protected]>
- Loading branch information
1 parent
9890314
commit 07d3f34
Showing
2 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Redirecting...</title> | ||
<link rel="canonical" href="/"> | ||
<meta name="robots" content="noindex"> | ||
<script>var anchor=window.location.hash.substr(1);location.href="/"+(anchor?"#"+anchor:"")</script> | ||
<meta http-equiv="refresh" content="0; url=/"> | ||
</head> | ||
<body> | ||
Redirecting... | ||
</body> | ||
</html> |