Initial commit

This commit is contained in:
Porawit Dongwang
2026-09-16 23:20:08 +07:00
commit 0041668dbb
32577 changed files with 3687927 additions and 0 deletions
@@ -0,0 +1,15 @@
<IfModule mod_rewrite.c>
RewriteEngine On
# Handle Authorization Header for JWT Bearer Tokens
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
# If the requested file or directory exists in public/, serve it directly
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
# Otherwise, forward all requests to index.php
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>