Reindirizzamenti da HTTPS a HTTP
Per fare un reindirizzamento del tuo sito da HTTPS a HTTP, aggiungi le seguenti direttive nel file .htaccess del sito web:
# Redirect HTTPS to HTTP
RewriteCond %{HTTP:X-Forwarded-Proto} =https
RewriteRule ^(.*)$ http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]