• 03-01-2021, 13:52:59
    #1
    Merhabalar wordpress siteme https ile giriş yapılsın istemiyorum.

    https linklere tıklansa bile otomatik olarak http yönlenmesini istiyorum nasıl yapabilirim acaba ??

    Teşekkürler
  • Kabul Edilen Cevap
    • # http to https yönlendirme
      RewriteCond %{SERVER_PORT} 443
      RewriteRule ^(.*)$ http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

      bu kodu .htaccess dosyasına yapıştır. işini görecektir.
  • 03-01-2021, 13:57:22
    #2
    Bu cevap, konu sahibi tarafından kabul edilebilir bir cevap olarak işaretlendi.
    # http to https yönlendirme
    RewriteCond %{SERVER_PORT} 443
    RewriteRule ^(.*)$ http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

    bu kodu .htaccess dosyasına yapıştır. işini görecektir.
  • 03-01-2021, 13:57:45
    #3
    # Redirect HTTPS to HTTP RewriteCond %{HTTP:X-Forwarded-Proto} =https RewriteRule ^(.*)$ http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
    kaynak: https://www.seolog.com.tr/httpsden-httpye-yonlendirme/
  • 03-01-2021, 14:01:06
    #4
    Sanalgezgin57 adlı üyeden alıntı: mesajı görüntüle
    # http to https yönlendirme
    RewriteCond %{SERVER_PORT} 443
    RewriteRule ^(.*)$ http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

    bu kodu .htaccess dosyasına yapıştır. işini görecektir.
    çalıştı çok teşekkür ederim

    mahmutk adlı üyeden alıntı: mesajı görüntüle
    # Redirect HTTPS to HTTP RewriteCond %{HTTP:X-Forwarded-Proto} =https RewriteRule ^(.*)$ http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
    kaynak: https://www.seolog.com.tr/httpsden-httpye-yonlendirme/
    bunu denedim olmadı malesef
  • 26-03-2021, 11:55:36
    #5
    Sanalgezgin57 adlı üyeden alıntı: mesajı görüntüle
    # http to https yönlendirme
    RewriteCond %{SERVER_PORT} 443
    RewriteRule ^(.*)$ http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

    bu kodu .htaccess dosyasına yapıştır. işini görecektir.
    https://site.com yazınca http://site.com yönleniyor sorun yok fakat
    https://www.site.com yazınca http olarak yönlenmiyor

    ben tüm linklerin www süz bir şekilde ve http olarak açılmasını istiyorum.
    www ve https hiç bir şekilde gelmesin

    teşekkürler
  • 26-03-2021, 13:48:53
    #6
    www süz yönlendirme içinse
    # www yönlendirme
    RewriteCond %{HTTP_HOST} ^www.siteadi\.com [NC]
    RewriteRule ^(.*)$ http://siteadi.com/$1 [L,R=301]