Possible solutions of your questions

  hosting
<< Previous       redirect https to http

Question: Hello,help me, why when you open a site via https, it opens in http
Answer:

Hello.

Specify a redirect in the file .htaccess:

RewriteEngine On

RewriteCond %{HTTPS} off

RewriteCond %{HTTP:X-Forwarded-Proto} !https

RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]


<< Previous