I’ve been struggling getting this to work and my suspicion is that it’s the .htaccess file that is keeping it from working. I have a shared ssl cert that I’m trying to use and I’ve followed the directions for this snippet to a "T". I’ve even turned off furls to see if that was the problem and it still refuses to work.
Here’s the scenario:
I request my shared ssl url which is
https://ssl21.servage.net/mysite.net/ and it keeps redirecting me back to
http://www.thecountyedge.net/
In the .htaccess file, I put:
RewriteCond %{SERVER_PORT} 443
RewriteRule ^(.*)
https://ssl21.servage.net/mysite.net/$1 [R=301,L]
and a variety of other combinations of the above, still no good. I either get an SSL connection to my hosts 404 page or I get nothing at all.
Any hints on how to get this working properly would be greatly appreciated. I’m no mod_rewrite guru.
I’ve attached my .htaccess file as well.
Thanks
Edit: Just wanted to mention that I have tried both htaccess methods listed
here, and
here. Just can’t get it to work properly.