From 0aa44520accbb53850e157df6c36447ff6768a1c Mon Sep 17 00:00:00 2001 From: Kingkor Roy Tirtho Date: Mon, 16 Dec 2024 11:43:41 +0600 Subject: [PATCH] website: redirect from /other-downloads/stable-downloads/ to /downloads --- website/src/routes/other-downloads/stable-downloads/+page.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 website/src/routes/other-downloads/stable-downloads/+page.ts diff --git a/website/src/routes/other-downloads/stable-downloads/+page.ts b/website/src/routes/other-downloads/stable-downloads/+page.ts new file mode 100644 index 00000000..39a7319f --- /dev/null +++ b/website/src/routes/other-downloads/stable-downloads/+page.ts @@ -0,0 +1,5 @@ +import { redirect } from "@sveltejs/kit"; + +export function load(){ + redirect(301, "/downloads"); +} \ No newline at end of file