Create a permanent redirect from an old page to a new page
RewriteEngine on
RewriteRule ^oldpage\.html http://www.mydomain.com/newpage.html [R=301,L]
Create a rewrite rule for each page that you want redirected.
After adding the rules, save your text file as htaccess.txt.
FTP the file to the root of your site and rename as .htaccess.
Redirect from non-ssl to ssl
# Helicon ISAPI_Rewrite configuration file
# Version 3.1.0.56
RewriteEngine On
RewriteCond %{SERVER_PORT} !443
RewriteRule (.*) https://www.mydomain.com/ [R]