Mancano RewriteEngine e RewriteBase, che servono su AlterVista. Inoltre, ci son alcuni errore nel redirect da http a https.
Sostituisca questo:
Codice:
RewriteCond %{HTTP:X-Forwarded-Proto} !=http
RewriteCond %{HTTPS} =off
RewriteRule ^ http://robbifarm.altervista.org%{REQUEST_URI} [L,R=301]
con questo:
Codice:
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteCond %{HTTPS} off
RewriteRule .* https://robbifarm.altervista.org%{REQUEST_URI} [L,R=301]
Cordiali saluti.