To redirect your site from http to https just paste the following code in you existing .htaccess file if does not have .htaccess create it on root folder and past it
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{SERVER_NAME}/$1 [R,L]
0 comments: