# Protect JSON data files from direct access
<FilesMatch "\.(json)$">
    Order Allow,Deny
    Deny from all
</FilesMatch>

# Protect panel config
<Files "panel_config.php">
    Order Allow,Deny
    Deny from all
</Files>

# Protect handler internal calls (allow same server)
<Files "handler.php">
    Order Allow,Deny
    Allow from all
</Files>
