From c47f47db705ae77894ecef00f0374f0385e8cef4 Mon Sep 17 00:00:00 2001 From: MagicLex <64143547+MagicLex@users.noreply.github.com> Date: Mon, 19 Jan 2026 10:44:10 +0100 Subject: [PATCH] Add 404.html with JS redirects for legacy URLs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Handle old documentation URL patterns that now 404: - /feature-store-api/*, /hopsworks-api/*, /machine-learning-api/* - /hopsworks-cloud/*, /hopsworks/* (versioned) - Double latest patterns (*/latest/latest/*) - Root level /generated/, /integrations/, /featurestore/ - Old version numbers at root (/3.0/, /4.0/) - CONTRIBUTING paths → GitHub All legacy URLs redirect to /latest/ or appropriate new locations. Co-Authored-By: Claude Opus 4.5 --- docs/overrides/404.html | 124 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 124 insertions(+) create mode 100644 docs/overrides/404.html diff --git a/docs/overrides/404.html b/docs/overrides/404.html new file mode 100644 index 0000000000..933a1873bc --- /dev/null +++ b/docs/overrides/404.html @@ -0,0 +1,124 @@ +{% extends "main.html" %} + +{% block content %} +

Page Not Found

+

The page you're looking for doesn't exist or has been moved.

+

Redirecting you to the documentation...

+

If you're not redirected, click here.

+ + +{% endblock %}