DirectoryIndex index.php
<IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteRule ^$ public/index.php [L]

    RewriteRule ^((?!public/).*)$ public/$1 [L,NC]
    
    RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
    RewriteRule ^(.*)$ https://www.etre-mimarlik.com/$1 [R,L]
    

</IfModule>
RewriteCond %{HTTP_HOST} ^etre\-mimarlik\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.etre\-mimarlik\.com$
RewriteRule ^/?$ "http\:\/\/etremimarlik\.com\/" [R=301,L]

