# Prevent directory listing
Options -Indexes

# Block direct access to this directory
<Files "*">
    Require all denied
</Files>

# Allow only image files (if needed for specific access)
<FilesMatch "\.(jpg|jpeg|png|gif|webp)$">
    <IfModule mod_authz_core.c>
        Require all granted
    </IfModule>
    <IfModule !mod_authz_core.c>
        Order allow,deny
        Allow from all
    </IfModule>
</FilesMatch>
