Skip to content

Commit

Permalink
redirection oage
Browse files Browse the repository at this point in the history
  • Loading branch information
ehedlin committed Dec 1, 2023
1 parent 178b891 commit 70c0231
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<title>Redirecting...</title>
<script type="text/javascript">
document.addEventListener("DOMContentLoaded", function () {
var url = window.location.href;
// Check if the URL is the case-sensitive version that needs redirection
if (url.includes("/StableKeypoints")) {
window.location.href = url.replace(
"/StableKeypoints",
"/stablekeypoints"
);
}
});
</script>
</head>
<body>
<p>Redirecting...</p>
</body>
</html>

0 comments on commit 70c0231

Please sign in to comment.