From 5dc59c3d3d0c88e88c2c85b31ec47d96b19e8110 Mon Sep 17 00:00:00 2001 From: Devin Logan Date: Mon, 20 Oct 2025 16:15:01 -0400 Subject: [PATCH] update default in param, clarify wording --- fern/snippets/redirects.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fern/snippets/redirects.mdx b/fern/snippets/redirects.mdx index de186cc0d..f41e74917 100644 --- a/fern/snippets/redirects.mdx +++ b/fern/snippets/redirects.mdx @@ -30,15 +30,15 @@ If your docs are hosted on a subpath (like `buildwithfern.com/learn`), include t - The incoming request path pattern. + The path you want to redirect from. The path you want to route to. Can be an internal path (`/new-path`) or an external URL (`https://example.com`). External URLs must include the full address, including `https`. - - `true` or `false` - default is `true`. If `true`, will use the 308 status code which instructs clients/search engines to cache the redirect forever. If `false`, will use the 307 status code which is temporary and is not cached. + + By default, uses the 308 status code to instructs clients and search engines to cache the redirect forever. Set to `false` only if you need a temporary redirect using the 307 status code, which won't be cached. ### Best practices