Custom Attributes and SSL

Permalink
For the sake of security and peace of mind, I put an SSL certificate on my server which hosts my Concrete5 installation and used an .htaccess redirect to force all traffic to use https:// instead of http://

Everything seemed to be working fine right up to the point that I attempted to add a custom attribute to a page, at which point, instead of saving the attribute, I was being returned with a pop-up alert containing the introductory HTML of the page I was attempting to edit.

Any ideas of why this might be or a way to resolve it?

I removed the offending chunk of code from .htaccess for the time being as I'm still in the development phase, but I will need to solve this before the site goes live.

Here is the code I used:
RewriteEngine On 
  RewriteCond %{SERVER_PORT} 80 
  RewriteRule ^(.*)$ https://www.freehigh.com/$1 [R,L]

 
Mnkras replied on at Permalink Best Answer Reply
Mnkras
you don't need to use a rewrite rule, open /config/site.php and change the http:// to https:// thats it