batuhanyuksel adlı üyeden alıntı: mesajı görüntüle
htacces otomatik yönlendirme kodu eklediniz mi veya şuan ssl kurulu mu?
Sorunum şu kodu eklediğinde oluştu
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Eski haline şuna çevirdim;
RewriteRule ".well-known/acme-challenge" - [L]

RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RewriteCond %{HTTP:HTTPSSL} !^true$
RewriteCond %{HTTPS} !^on$
RewriteRule ^(.*) https://%{HTTP_HOST}/$1 [R=301,L]


# php -- BEGIN cPanel-generated handler, do not edit
# Set the “ea-php73” package as the default “PHP” programming language.
<IfModule mime_module>
  AddHandler application/x-httpd-ea-php73 .php .php7 .phtml
</IfModule>
# php -- END cPanel-generated handler, do not edit