From 5bf66c256bd730fa7c58bd8f57e2560da8039339 Mon Sep 17 00:00:00 2001 From: Erik Seliger Date: Tue, 8 Jul 2025 13:29:38 +0200 Subject: [PATCH] Add redirect from old to new deep search URL We moved it but the product deep links to the old location. Test plan: CI. --- src/data/redirects.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/data/redirects.ts b/src/data/redirects.ts index c64c9708c..25485a232 100644 --- a/src/data/redirects.ts +++ b/src/data/redirects.ts @@ -6868,6 +6868,11 @@ const redirectsData = [ destination: '/analytics', permanent: true }, + { + source: '/code-search/types/deep-search', + destination: '/deep-search', + permanent: true + }, ]; const updatedRedirectsData = redirectsData.map(redirect => {