• 12-07-2018, 14:56:08
    #1
    tam tersini istiyorum

    HTTPS'DEN GELENLERİ HTTP'YE yönledireceğim,

    kodu nedir?
  • 12-07-2018, 14:58:51
    #2
    # Redirect HTTPS to HTTP
    RewriteCond %{HTTP:X-Forwarded-Proto} =https
    RewriteRule ^(.*)$ http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
  • 12-07-2018, 15:01:57
    #3
    br3akb0y 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]
    olmadı hocam
  • 12-07-2018, 15:03:09
    #4
    RewriteEngine On
    RewriteCond %{HTTPS} on
    RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]