I am trying to redirect the addon domain (including all its pages) from http://mysite.com to https://mysite.com .
I tried a bunch of options.
Nothing works because cyclic redirection occurs.
At the same time, http://www.mysite.com is redirected to https://www.mysite.com perfectly.
Solution Used:
<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTP_HOST}#%{HTTPS}s ^www\.([^#]+)#(?:off|on(s)) [NC] RewriteRule ^ https%2://%1%{REQUEST_URI} [R=301,L] </IfModule>
How to redirect http://mysite.com to https://mysite.com ?