From 0202a3e6edb077a32052cbfba459d94868cc7c4e Mon Sep 17 00:00:00 2001 From: Rachel Lee Nabors Date: Wed, 7 Jan 2026 22:53:58 +0000 Subject: [PATCH] add redirects for new pages --- next.config.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/next.config.ts b/next.config.ts index 463610784..7fe033e18 100644 --- a/next.config.ts +++ b/next.config.ts @@ -24,6 +24,16 @@ const nextConfig: NextConfig = withLlmsTxt({ async redirects() { return [ // Old /home/* paths to new structure + { + source: "/:locale/home/build-tools/server-level-vs-tool-level-auth", + destination: "/:locale/learn/server-level-vs-tool-level-auth", + permanent: true, + }, + { + source: "/:locale/home/build-tools/secure-your-mcp-server", + destination: "/:locale/guides/security/secure-your-mcp-server", + permanent: true, + }, { source: "/:locale/home/agent-frameworks-overview", destination: "/:locale/guides/agent-frameworks",