diff --git a/src/middleware.ts b/src/middleware.ts index 5d31439ab273e..f1a53aa61ce63 100644 --- a/src/middleware.ts +++ b/src/middleware.ts @@ -3237,6 +3237,22 @@ const REDIRECTS: Redirect[] = [ from: '/product/performance/queue-monitoring/queues-page/', to: '/product/insights/queue-monitoring/queues-page/', }, + { + from: '/product/explore/session-replay/protecting-user-privacy/', + to: '/security-legal-pii/scrubbing/protecting-user-privacy/', + }, + { + from: '/account/choose-your-data-center/', + to: '/organization/data-storage-location/', + }, + { + from: '/account/early-adopter/', + to: '/organization/early-adopter-features/', + }, + { + from: '/account/quotas/spike-protection/', + to: '/pricing/quotas/spike-protection/', + }, ]; const redirectMap = new Map(REDIRECTS.map(r => [r.from as string, r.to]));