Para redirigir de https a http en el servidor web Apache2, agregue la configuración especificada en uno de los ejemplos al archivo .htaccess.
Opción 1:
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^/(.*):NOSSL$ http://www.domain.tld/$1 [R=301,L]
Opcion 2:
RewriteEngine On
RewriteCond %{HTTPS} on
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
Sin comentarios aún