From 9f2376e775a7cce8f2ddf717501da65034184375 Mon Sep 17 00:00:00 2001 From: Petra Donka Date: Thu, 30 Apr 2026 21:33:54 +0200 Subject: [PATCH] Redirect /getting-started/what-is-warp to home The trailing-slash variant /getting-started/what-is-warp/ already redirects to /, but the no-slash variant returned 404. GSC shows this URL has 106 clicks and 28,910 impressions over the last 90 days (the highest-traffic 404 in the new docs), so add the no-slash redirect to match. Co-Authored-By: Oz --- vercel.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/vercel.json b/vercel.json index 245a45dc..6d747ef9 100644 --- a/vercel.json +++ b/vercel.json @@ -2351,6 +2351,11 @@ "destination": "/getting-started/supported-shells/", "statusCode": 308 }, + { + "source": "/getting-started/what-is-warp", + "destination": "/", + "statusCode": 308 + }, { "source": "/guide/ssh-guide", "destination": "/terminal/warpify/ssh/",