# Sadece resim dosyalarına izin ver
<FilesMatch "\.(jpg|jpeg|png|gif|webp)$">
    Order allow,deny
    Allow from all
</FilesMatch>

# PHP dosyalarının çalıştırılmasını engelle
<FilesMatch "\.php$">
    Order allow,deny
    Deny from all
</FilesMatch>
