From 4b4f047798d1ccbc251e96797117baba25ccca4f Mon Sep 17 00:00:00 2001 From: Schahin Date: Tue, 1 Oct 2024 18:20:01 +0200 Subject: [PATCH] Redirect indexed broken link (#1378) --- web/platform/astro.config.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/web/platform/astro.config.ts b/web/platform/astro.config.ts index 6196579c6..174758e4c 100644 --- a/web/platform/astro.config.ts +++ b/web/platform/astro.config.ts @@ -26,6 +26,12 @@ export default defineConfig({ port: 8881, hostname: "localhost", }), + redirects: { + "/blog/case-study%3A-samsung-internet's-integration-with-nativelink": { + status: 301, + destination: "/resources/blog/case-study-samsung", + }, + }, integrations: [ qwik({ include: ["**/components/qwik/**/*"],