From 5978dfd09e7a415f675062baaff600cdd7a08bcf Mon Sep 17 00:00:00 2001 From: Dominic Reich Date: Sun, 18 Jun 2023 08:42:47 +0200 Subject: [PATCH] =?UTF-8?q?adds=20some=20basic=20URL=20redirecting=20(/blo?= =?UTF-8?q?g=E2=86=92/posts,/[category]=E2=86=92/posts)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- static/.htaccess | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 static/.htaccess diff --git a/static/.htaccess b/static/.htaccess new file mode 100644 index 0000000..9100676 --- /dev/null +++ b/static/.htaccess @@ -0,0 +1,5 @@ +RewriteEngine on + +Redirect permanent "/blog" "/posts" +Redirect permanent "/amateur-radio" "/posts" +Redirect permanent "/computerstuff" "/posts"