# Protect sensitive files (Apache 2.4+)
<IfModule mod_authz_core.c>
  <FilesMatch "^(baseInfo\.php|panel_admin_credentials\.txt|panel_path\.txt|panel_url\.txt|createDB\.php)$">
    Require all denied
  </FilesMatch>
</IfModule>
# Apache 2.2 fallback
<IfModule !mod_authz_core.c>
  <FilesMatch "^(baseInfo\.php|panel_admin_credentials\.txt|panel_path\.txt|panel_url\.txt|createDB\.php)$">
    Order allow,deny
    Deny from all
  </FilesMatch>
</IfModule>
