How can I redirect users from my http pages to the https pages?
You can do this by adding the following lines to your .htaccess in /public_html/
RewriteEngine on
#Options +FollowSymlinks
RewriteCond %{SERVER_PORT} ^80$
RewriteRule ^(.*) https://yourdomain.com/cart/$1 [R,L]