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 +++++++++ public/index.php | 5 +++++ 2 files changed, 14 insertions(+) create mode 100644 public/.htaccess create mode 100644 public/index.php (limited to 'public') 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] diff --git a/public/index.php b/public/index.php new file mode 100644 index 0000000..280269e --- /dev/null +++ b/public/index.php @@ -0,0 +1,5 @@ +run(); -- cgit v1.2.3