From d62851f6d108b21e1fdaf433cf19899521f8ddf0 Mon Sep 17 00:00:00 2001 From: Erik Osterman Date: Wed, 11 Feb 2026 09:07:19 -0600 Subject: [PATCH] fix: add newsletter redirect rules for broken component and blog links Fixes broken newsletter links: - Component pages: auditmanager, shield, inspector2, securityhub, config (missing hyphens/aws- prefix) - Blog post: deprecating account-map (date-based URL instead of slug-based URL) Co-Authored-By: Claude Haiku 4.5 --- .../redirects/components-migration.json | 20 +++++++++++++++++++ plugins/staticRedirects/redirects/docs.json | 6 +++++- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/plugins/staticRedirects/redirects/components-migration.json b/plugins/staticRedirects/redirects/components-migration.json index ac755c01d..4190ef4b7 100644 --- a/plugins/staticRedirects/redirects/components-migration.json +++ b/plugins/staticRedirects/redirects/components-migration.json @@ -38,5 +38,25 @@ { "from": "/components/library/aws/tgw/cross-region-hub-connector", "to": "/components/library/aws/tgw/hub-connector" + }, + { + "from": "/components/library/aws/auditmanager/", + "to": "/components/library/aws/audit-manager/" + }, + { + "from": "/components/library/aws/shield/", + "to": "/components/library/aws/aws-shield/" + }, + { + "from": "/components/library/aws/inspector2/", + "to": "/components/library/aws/aws-inspector2/" + }, + { + "from": "/components/library/aws/securityhub/", + "to": "/components/library/aws/security-hub/" + }, + { + "from": "/components/library/aws/config/", + "to": "/components/library/aws/aws-config/" } ] diff --git a/plugins/staticRedirects/redirects/docs.json b/plugins/staticRedirects/redirects/docs.json index 85ba21dda..33d7d29b4 100644 --- a/plugins/staticRedirects/redirects/docs.json +++ b/plugins/staticRedirects/redirects/docs.json @@ -10,5 +10,9 @@ { "from": "/jumpstart/support/", "to": "/support" -} + }, + { + "from": "/blog/2025/12/19/deprecating-account-map-and-related-components/", + "to": "/blog/deprecate-account-map/" + } ]