# Deny PHP execution in uploads folder
<FilesMatch "\.php$">
    Order Deny,Allow
    Deny from all
</FilesMatch>

# Deny direct access to sensitive files
<FilesMatch ".*">
    Order allow,deny
    Allow from all
</FilesMatch>
