# Kurulum klasörü güvenliği

# Hassas dosyaları HTTP üzerinden gizle (kod, lock, env)
<FilesMatch "^(kod\.txt|\.kurulum_tamam|.*\.env)$">
  Require all denied
</FilesMatch>

# Apache 2.2 uyumluluğu için
<IfModule !mod_authz_core.c>
  <FilesMatch "^(kod\.txt|\.kurulum_tamam|.*\.env)$">
    Order allow,deny
    Deny from all
  </FilesMatch>
</IfModule>

# Sadece index.php'yi sun. Diğer .php dosyalarını listeleme/çalıştırma.
DirectoryIndex index.php

# Listing kapalı
Options -Indexes
