Hostgator already has the certificate in place so they said to just throw this into the .htaccess and to change some setting in google webmaster tools. Are there any additional redirects I need to consider for functionality and for google juice? Or anything else I need to consider before I add that bit of code? Thanks
Force HTTPS Access
# Always use https for secure connections
# Replace 'www.example.com' with your domain name
# (as it appears on your SSL certificate)
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.example.com/$1 [R=301,L]