Redirect page

This commit is contained in:
Mark Cornick 2023-12-09 01:05:54 -05:00
parent cd6360a3db
commit 23be0a52e5
Signed by: mcornick
SSH Key Fingerprint: SHA256:j7rnVdxCp1WgOwBhzhGvY1R7T1l1eFrMpVJS/SMN/d0
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<noscript>
<meta http-equiv="refresh" content="1; url=https://mcornick.com/" />
</noscript>
<script>
window.location.replace("https://mcornick.com/" + window.location.hash);
</script>
</head>
<body>
Redirecting to <a href="https://mcornick.com/">mcornick.com/</a>...
</body>
</html>