So, my client changed their old domain to a new domain which had an SSL cert on it. The old domain is indexed as https://olddomain.com and even though I changed the forwarding in Godaddy to go to the new domain it will not load! I'm trying to redirect with a htaccess file but I have not had any success. So, https://olddomain.com does not redirect but if you type in olddomain.com it redirects.
Can anyone tell me what I need to do to get the https://olddomain.com to redirect? FYI: I do not have hosting setup for the old domain.
My htaccess file is just this:
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.newdomain.com/$1 [R,L]
RewriteCond %{HTTPS_HOST} \olddomain.com$
RewriteRule ^(.*)$ https://www.newdomain.com$1 [R=301,L]