Si necesitas redireccionar tu web de http a https, la manera más sencilla es haciéndolo usando un archivo .htaccess. Tan sólo hay que copiar y pegar este contenido y listo!
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]