Eddy and Sly - get in touch
@Sly - you should have shown him 301 redirect from HTTP to HTTPS
Here is a freebie... many ways of doing it, and this is just one
Code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>