Salve vengo subito al dunque. Ho un AlterSito e ho attivato HTTPS e tutto.
Ho seguito questa guida per mettere HTTPS forzato: LINK
Però io nel .htaccess ho anche questo codice:
Codice:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^/]*)$ /index.php?page=$1 [QSA,L]
Quindi ricapitolando se metto insieme i due codici:
Codice:
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteCond %{HTTPS} off
RewriteRule .* https://kolop.altervista.org%{REQUEST_URI} [L,R=301]
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^/]*)$ /index.php?page=$1 [QSA,L]
Nell'url esce così: https://kolop.altervista.org/index.php?page=
Come posso risolvere?
Grazie.