fix possible redirect loop
Alan Pearce alan@alanpearce.eu
Tue, 16 Apr 2024 00:01:52 +0200
1 files changed, 4 insertions(+), 1 deletions(-)
jump to
M src/app.ts → src/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,