• 11-08-2018, 19:12:08
    #1
    Kimlik doğrulama veya yönetimden onay bekliyor.
    Selamlar

    wordpress için htaccess kodu araştırdım ama hostta bi türlü çalışmadı acaba elinizde

    www.
    https://
    http://
    http://www.
    bunları
    https://www.siteadi.com yönlendirme kodu varmıdır
  • 11-08-2018, 19:15:34
    #2
    RewriteEngine On
    RewriteCond %{SERVER_PORT} !=443
    RewriteRule ^ https://www.siteadresi.com%{REQUEST_URI} [NS,R,L]

    bunu denermisin
  • 11-08-2018, 19:18:03
    #3
    aşırı istek nedeniyle hosta erişemedi olmadı hocam
  • 11-08-2018, 19:24:02
    #4
    ELFDaily adlı üyeden alıntı: mesajı görüntüle
    Selamlar

    wordpress için htaccess kodu araştırdım ama hostta bi türlü çalışmadı acaba elinizde

    www.
    https://
    http://
    http://www.
    bunları
    https://www.siteadi.com yönlendirme kodu varmıdır
    RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
  • 11-08-2018, 19:45:06
    #5
    RewriteEngine On
    RewriteCond %{HTTPS} off
    # First rewrite to HTTPS:
    # Don't put www. here. If it is already there it will be included, if not
    # the subsequent rule will catch it.
    RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
    # Now, rewrite any request to the wrong domain to use www.
    # [NC] is a case-insensitive match
    RewriteCond %{HTTP_HOST} !^www. [NC]
    RewriteRule .* https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
  • 11-08-2018, 19:52:37
    #6
    erkanakgun adlı üyeden alıntı: mesajı görüntüle
    RewriteEngine On
    RewriteCond %{HTTPS} off
    # First rewrite to HTTPS:
    # Don't put www. here. If it is already there it will be included, if not
    # the subsequent rule will catch it.
    RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
    # Now, rewrite any request to the wrong domain to use www.
    # [NC] is a case-insensitive match
    RewriteCond %{HTTP_HOST} !^www. [NC]
    RewriteRule .* https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
    malesef attığınız kod tüm urlleri https:// yönlendirdi ben https://www. istemekteyim
  • 11-08-2018, 19:56:49
    #7
    ELFDaily adlı üyeden alıntı: mesajı görüntüle
    malesef attığınız kod tüm urlleri https:// yönlendirdi ben https://www. istemekteyim
    en sondaki 2 satırın başına # koyman yeterli.