• 24-12-2021, 00:31:07
    #1
    Merhabalar, sitemde SSL aktif https:// şeklinde girdiğimde sorun yok ancak doğrudan adres satırından girince http:// ile açılıyor.

    .htaccess dosyasına aşağıdaki kodları ekledim yine düzelmedi.

    Başka bir yöntem var mıdır? Site

    RewriteEngine On
    RewriteCond %{SERVER_PORT} 80
    RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]
  • 24-12-2021, 00:34:21
    #2
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    # Rewrite HTTP to HTTPS
    RewriteCond %{HTTPS} !=on
    RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [R,L]
    Bunları ekleyip denermisin ?
  • 24-12-2021, 02:25:14
    #3
    'Really Simple SSL' eklentisi ile halledebilirsin.