Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .overrides/404.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ <h1>Page moved or not found</h1>
The page you're looking for may have moved under a versioned path.
</p>
<p>
You’ll be automatically redirected to the latest version of this page, if it exists.
Please update the bookmarks or the reference to these pages to the following link if, the new location exists.
</p>
<p>
👉 <a id="redirect-link" href="/latest/">Redirect to /latest/...</a>
Expand All @@ -26,7 +26,7 @@ <h1>Page moved or not found</h1>
const link = document.getElementById("redirect-link");
link.href = newPath;
link.textContent = newPath; // Set both href and visible text
window.location.replace(newPath);
//window.location.replace(newPath);
}
})();
</script>
Expand Down
Loading