all repos — website @ 8906942e9cb48906a67e4b17919accf51c18edc5

My website

fix possible redirect loop
Alan Pearce alan@alanpearce.eu
Tue, 16 Apr 2024 00:01:52 +0200
commit

8906942e9cb48906a67e4b17919accf51c18edc5

parent

3c5f2727364bcfc75fd39e4478a0cfe850a1de9f

1 files changed, 4 insertions(+), 1 deletions(-)

jump to
M src/app.tssrc/app.ts
@@ -217,7 +217,10 @@ return new Response("", {             status: status,
             headers: { location: newpath },
           });
-        } else if (files.has(pathname.replace(/index.html$/, ""))) {
+        } else if (
+          pathname.endsWith("index.html") &&
+          files.has(pathname.replace(/index.html$/, ""))
+        ) {
           newpath = pathname.replace(/index.html$/, "");
           metrics.requests.inc({
             content_encoding: contentEncoding,