Initial commit

This commit is contained in:
2026-01-07 14:09:59 +08:00
commit 8a00aa71d5
939 changed files with 40616 additions and 0 deletions

6
.htaccess Normal file
View File

@@ -0,0 +1,6 @@
# Redirect everything to /src while allowing direct access to it
RewriteEngine On
# Skip if already under /src
RewriteCond %{REQUEST_URI} !^/src/
# Redirect all to /src preserving the path
RewriteRule ^(.*)$ /src/$1 [L]