From aa908ab7bd03818a2cb1f9b4686034f08736d1cb Mon Sep 17 00:00:00 2001 From: Daniel Weipert Date: Thu, 19 Feb 2026 14:52:15 +0100 Subject: initial commit --- public/.htaccess | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 public/.htaccess (limited to 'public/.htaccess') diff --git a/public/.htaccess b/public/.htaccess new file mode 100644 index 0000000..e6b560b --- /dev/null +++ b/public/.htaccess @@ -0,0 +1,9 @@ +RewriteEngine on + +RewriteCond %{REQUEST_FILENAME} !-d +RewriteCond %{REQUEST_URI} (.+)/$ +RewriteRule ^ %1 [R,L] + +RewriteCond %{REQUEST_FILENAME} !-f +RewriteCond %{REQUEST_FILENAME} !-d +RewriteRule ^.*$ /index.php [L,QSA] -- cgit v1.2.3