How to redirect from HTTPS to HTTP?
To redirect your website from HTTPS to HTTP, add the following rule in your website’s .htaccess file:
# Redirect HTTPS to HTTP
RewriteCond %{HTTP:X-Forwarded-Proto} =https
RewriteRule ^(.*)$ http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]