From 8b7ba241eb921aef8a309e9314b72bbdf5d47831 Mon Sep 17 00:00:00 2001 From: Pete Lumbis Date: Thu, 1 Jun 2023 20:01:01 -0400 Subject: [PATCH] Add redirects for top 404 pages Signed-off-by: Pete Lumbis --- netlify.toml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/netlify.toml b/netlify.toml index 3715b02f..6795b149 100644 --- a/netlify.toml +++ b/netlify.toml @@ -9,6 +9,27 @@ from = "/docs/*" to = "/:splat" status = 302 +[[redirects]] +from = "/v1.9/concepts/managed-resources.html" +to = "/latest/concepts/managed-resources" +status = 302 + +[[redirects]] +from = "/v1.9/concepts/providers.html" +to = "/latest/concepts/providers" +status = 302 + +[[redirects]] +from = "/v1.9/getting-started/create-configuration" +to = "/latest/getting-started" +status = 302 + +[[redirects]] +from = "/v1.9/getting-started/install-configure" +to = "/latest/software/install/" +status = 302 + + [context.deploy-preview] command = "bash netlify_build.sh"