Originally Posted by
smallscopeimages
I have activated https:// in control panel but exactly what code and where should i place it in order to redirect from a http:// to https://
Thanks
I confirm that HTTPS is currently working on your site. You should change, in the HTML code, the "http://" in "https://" urls.
You should also insert in .htaccess file this code:
Code:
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteCond %{HTTPS} off
RewriteRule .* https://smallscopeimages.altervista.org%{REQUEST_URI} [L,R=301]
Bye!