From 8d73cbf433348eb7bdf036e813877615d4342151 Mon Sep 17 00:00:00 2001 From: Kara Alexandra Date: Fri, 25 Sep 2026 00:08:30 -0500 Subject: [PATCH] Redirect legacy permalinks --- nginx.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nginx.conf b/nginx.conf index ae43fde..7c7c1e8 100644 --- a/nginx.conf +++ b/nginx.conf @@ -3,6 +3,10 @@ server { listen [::]:80; server_name localhost; + location ~ ^/(\w\w/)?(h|m|named)/ { + return 301 http://alttpr-legacy.gwaa.kiwi$request_uri; + } + location / { root /usr/share/nginx/html; index index.html;