From 6487e7bc8a1020ba664eee26f487447dbfe34590 Mon Sep 17 00:00:00 2001
From: Christian Wolf <github@christianwolf.email>
Date: Wed, 19 Feb 2025 11:00:40 +0100
Subject: [PATCH] Prevent redirection loop

---
 static/.htaccess | 1 +
 1 file changed, 1 insertion(+)

diff --git a/static/.htaccess b/static/.htaccess
index cb247d77..54cb3bb8 100644
--- a/static/.htaccess
+++ b/static/.htaccess
@@ -1,4 +1,5 @@
 RewriteEngine On
 RewriteCond %{REQUEST_FILENAME} !-f [OR]
 RewriteCond %{REQUEST_FILENAME} !-d
+RewriteCond %{REQUEST_FILENAME} !^$
 RewriteRule .* / [R=302,END]