initial commit

This commit is contained in:
2026-06-07 00:19:51 +07:00
commit a8140c1619
31 changed files with 637 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
# RewriteEngine on
# RewriteCond %{REQUEST_FILENAME} !-f
# RewriteCond %{REQUEST_FILENAME} !-d
# RewriteRule . /index.html [L]
RewriteEngine On
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -f [OR]
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -d
RewriteRule ^ - [L]
# Fallback all other routes to index.html
RewriteRule . /index.html [L]