# KYC belgeleri için güvenlik ayarları
<Files "*">
    Order Deny,Allow
    Deny from all
    Allow from 127.0.0.1
    Allow from ::1
</Files>

# Sadece resim dosyalarına erişime 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 Deny,Allow
    Deny from all
</FilesMatch>