From 87869da79adcf9830478bfa6fc5ffc2bbff61399 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Fri, 2 Aug 2024 00:32:33 +0100 Subject: [PATCH] Remove `/archive/*` wildcard redirect This is intended to redirect `/archive/*` paths (the old daily email paths) to `/daily/*`, but is also affecting the `/archive` page and preventing anyone from seeing the email archive. --- source/.htaccess | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/.htaccess b/source/.htaccess index 5fac60eff..6eaad1236 100644 --- a/source/.htaccess +++ b/source/.htaccess @@ -21,8 +21,8 @@ RewriteRule ^(.*)index\.html$ /$1 [L,R=301] ErrorDocument 404 /404/index.html -RewriteCond %{REQUEST_URI} !^/archive/?$ -RewriteRule ^archive/(.*)$ /daily/$1 [L,R=301] +# RewriteCond %{REQUEST_URI} !^/archive/?$ +# RewriteRule ^archive/(.*)$ /daily/$1 [L,R=301] RewriteRule ^articles/(.*) /blog/$1 [L,R=301]