Sure. Right now the only redirection code I have for this type of thing is what GoDaddy put in when they switched my site from http to https. It's what I posted earlier in the thread, this code:Can you post the redirection code you used?
Code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} ^(www\.)?mysite\.com$ [NC]
RewriteRule ^(.*)$ https://mysite.com/$1 [L,R=301]
</IfModule>