Deploy from Lumerel

This commit is contained in:
Lumerel Deploy
2026-02-14 23:00:52 +00:00
commit 5d0874eab1
14 changed files with 443 additions and 0 deletions

20
.htaccess Normal file
View File

@@ -0,0 +1,20 @@
RewriteEngine On
RewriteBase /
# Redirect all requests to index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [L]
# Prevent directory listing
Options -Indexes
# Secure config and includes
<Files "assets/config.php">
Order Allow,Deny
Deny from all
</Files>
<Files "includes">
Order Allow,Deny
Deny from all
</Files>