- new blog cms

This commit is contained in:
Ty Clifford
2026-07-04 19:41:44 -04:00
parent 64cb76a846
commit 782b983bf4
819 changed files with 3103 additions and 88735 deletions
+20
View File
@@ -0,0 +1,20 @@
Options -Indexes
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^(app|cli|config|storage)(/|$) - [F,L]
RewriteRule ^bl-content/(databases|pages|tmp)(/|$) - [F,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^(.+)$ index.php?route=$1 [QSA,L]
RewriteRule ^$ index.php [L]
</IfModule>
<FilesMatch "\.(sqlite|db|csv|json|lock)$">
Require all denied
</FilesMatch>