Redirect existing index.html files
Alan Pearce alan@alanpearce.eu
Mon, 01 Apr 2024 19:53:58 +0200
1 files changed, 11 insertions(+), 0 deletions(-)
jump to
M src/app.ts → src/app.ts
@@ -214,6 +214,17 @@ return new Response("", { status: status, headers: { location: newpath }, }); + } else if (files.has(pathname.replace(/index.html$/, ""))) { + newpath = pathname.replace(/index.html$/, ""); + metrics.requests.inc({ + method: request.method, + path: newpath, + status_code: (status = 302), + }); + return new Response("", { + status: status, + headers: { location: newpath }, + }); } metrics.requests.inc({ method: request.method,