# Herkese açık erişim
<IfModule mod_rewrite.c>
  RewriteEngine On
</IfModule>

# Karakter kodlaması
AddDefaultCharset UTF-8

# Gzip sıkıştırma (isteğe bağlı performans artışı)
<IfModule mod_deflate.c>
  AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/javascript application/x-javascript
</IfModule>

# Önbellekleme (isteğe bağlı performans artışı)
<IfModule mod_expires.c>
  ExpiresActive On
  ExpiresDefault "access plus 1 month"
</IfModule>
