This commit is contained in:
yangsh
2025-12-01 17:54:31 +09:00
commit 40d9e3cc9a
102 changed files with 8896 additions and 0 deletions

17
app/.htaccess Normal file
View File

@@ -0,0 +1,17 @@
<IfModule authz_core_module>
Require all denied
</IfModule>
<IfModule !authz_core_module>
Deny from all
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
# If requested file exists, skip rewrite
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Rewrite to public folder
RewriteRule ^(.*)$ public/$1 [L]
</IfModule>