Yeah mate, I have done it and it works fine. Actually I would highly recommend it.I put this in my .htaccess (Everything with a "#" is a comment so you could remove it if you wanted, but I like it just for a reminder)RewriteEngine On# This will enable the Rewrite capabilitiesRewriteCond %{HTTPS} !=on# This checks to make sure the connection is not already HTTPSRewriteCond %{HTTP_HOST} !^www\.# This prepends www to any direct entryRewriteRule ^ https://www.domain.com%{REQUEST_URI} # RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 # This rule will redirect users from their original location, to the same location but using HTTPS.# i.e. http://www.example.com/foo/ to https://www.example.com/foo/# The leading slash is made optional so that this will work either in httpd.conf# or .htaccess context