From 95dac3d193d48e30c11f30124d48019a16840c25 Mon Sep 17 00:00:00 2001 From: Hippo Date: Tue, 31 Mar 2020 17:12:54 +0530 Subject: [PATCH] Redirect RSS to new URL The older one was `/rss` for Gatsby; this now goes to the more descriptive `/feed.xml` --- netlify.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/netlify.toml b/netlify.toml index 4d41d5d..3ce3924 100644 --- a/netlify.toml +++ b/netlify.toml @@ -33,3 +33,8 @@ public, max-age=0, must-revalidate''' + +[[redirects]] + from = "/rss" + to = "/feed.xml" + status = 301