From 94a6f5031de31df58673fea2ca43585b1e22e03b Mon Sep 17 00:00:00 2001 From: Gabor Javorszky Date: Tue, 9 Feb 2021 16:44:15 +0000 Subject: [PATCH] Add http -> https 301 force redirect to site --- netlify.toml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/netlify.toml b/netlify.toml index 95ee5a0..0750528 100644 --- a/netlify.toml +++ b/netlify.toml @@ -14,4 +14,10 @@ [[redirects]] from = "/feed/" to = "/feed/feed.xml" - status = 200 \ No newline at end of file + status = 200 + + [[redirects]] + from = "http://not.jsoxford.com/*" + to = "https://not.jsoxford.com/:splat" + status = 301 + force = true \ No newline at end of file