I have the site shrinemont.com. I added SSL.
www directing to non-www
HSTS = Yes
Joomla Force HTTPS = Entire site
All above works great.
I also have shrinemont.org. Here lies the problem.
http://shrinemont.org redirects to https://shrinemont.com
but
http://www.shrinemont.org creates too many redirects error.
Resulting url = https://shrinemont.com/https://shrinemont.com/404
So what I did that is wrong is I put this code in the Custom htaccess rule at bottom of file:
RewriteCond %{HTTP_HOST} ^shrinemont\.org$ [OR]
RewriteCond %{HTTP_HOST} ^www\.shrinemont\.org$
RewriteRule ^(.*)$ "https\:\/\/shrinemont\.com\/$1" [R=301,L]
But I don't know how to do this correctly. I need help fixing this.
Thanks,
Helen