htaccess dosya içeriği şu şekilde :
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
# Do not redirect index.php. This would cause a loop.
RewriteCond %{REQUEST_URI} !^index.php
# Do not redirect filenames that exist.
RewriteCond %{REQUEST_FILENAME} !-f
# Rewrite anything else to route to index.php
RewriteRule ^(.*)$ /index.php [L,QSA]