Initial commit

This commit is contained in:
Ruben 2025-10-02 17:01:55 +02:00
commit f48cdc268b
31 changed files with 628 additions and 0 deletions

14
content/.htaccess Normal file
View file

@ -0,0 +1,14 @@
DirectorySlash Off
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
# Serve static files from /app outside document root
RewriteRule ^app/(.*)$ /app-proxy.php?file=$1 [L,QSA]
# Don't rewrite if file exists
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !^/app/
RewriteRule ^(.*)$ /index.php [L,QSA]
</IfModule>