# Deny all direct web access to the panel-data directory (DB, throttle files).
# Defense in depth — the root .htaccess already blocks .db/.sqlite files, but
# this guarantees nothing in this folder is ever served directly.
<IfModule mod_authz_core.c>
    Require all denied
</IfModule>
<IfModule !mod_authz_core.c>
    Order Allow,Deny
    Deny from all
</IfModule>
