Adopt live production state as git baseline

This commit is contained in:
root
2026-07-07 07:55:47 -05:00
commit 588cfe3f10
85 changed files with 30896 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
Options -Indexes
RewriteEngine On
# Route all /api/* requests to api.php
RewriteCond %{REQUEST_URI} ^/api(/|$)
RewriteRule ^api(/.*)?$ api.php [QSA,L]
# Everything else serves static files or index.html
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]