My magento site is loading well on http
request, http://my-magento-site.com. But when I try lo load using https://my-magento-site.com It redirect to an error page, https://my-magento-site.com/cgi-sys/defaultwebpage.cgi . How do I prevent this, and redirect to http
request ?
I tried to add this code on my root .htaccess
file but not redirect,
RewriteEngine On
RewriteCond %{HTTPS} on
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
How do I fix this ?