RewriteEngine On

# Google site verification dosyalarını rewrite etme
RewriteRule ^google[a-z0-9]+\.html$ - [L]

RewriteRule ^([a-z0-9_-]+)\.html$ index.php/page/$1 [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/google[a-z0-9]+\.html$
RewriteCond %{REQUEST_URI} !^/(index\.php|asset|robots\.txt)$
RewriteRule ^(.*)$ index.php/$1 [L]