initial project

This commit is contained in:
2025-11-05 09:28:20 +08:00
parent c1c710611f
commit 8ec274dedf
398 changed files with 59106 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
<IfModule mod_rewrite.c>
RewriteEngine On
# Serve existing files directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Redirect everything to index.html
RewriteRule ^ index.html [L]
</IfModule>