adds some basic URL redirecting (/blog→/posts,/[category]→/posts)

This commit is contained in:
Dominic Reich 2023-06-18 08:42:47 +02:00
parent 0fa263333d
commit 5978dfd09e
Signed by: dominic
GPG key ID: BC9D6AE1A3BE169A

5
static/.htaccess Normal file
View file

@ -0,0 +1,5 @@
RewriteEngine on
Redirect permanent "/blog" "/posts"
Redirect permanent "/amateur-radio" "/posts"
Redirect permanent "/computerstuff" "/posts"