its interesting l use this code, working site. Or maybe have a problem in hosting provider. 🤔
<IfModule mod_rewrite.c>
RewriteEngine On
# WWW'yi kaldır ve HTTPS'ye yönlendir
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
# HTTPS zorunlu yap
RewriteCond %{HTTPS} !on
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
# Public klasörüne yönlendirme (HTTPS yönlendirmelerinden sonra)
RewriteCond %{REQUEST_URI} !^/public/
RewriteRule ^(.*)$ public/$1 [L]
</IfModule>
# PHP sürümünü belirle
<IfModule mime_module>
AddHandler application/x-httpd-ea-php82 .php .php8 .phtml
</IfModule>
thanks @huseyinfiliz