add build script to create deploy package

This commit is contained in:
2026-07-16 10:42:35 +02:00
parent f35ea865a2
commit 8436debdbb
4 changed files with 136 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
<IfModule mod_rewrite.c>
RewriteEngine On
# Route all requests to index.php unless the path is a real file or directory
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
</IfModule>