Como fazer usando PHP:
<?php
if
(
$_SERVER
[
'SERVER_PORT'
] !=
'443'
) {
header(
'Location: https://'
.
$_SERVER
[
'HTTP_HOST'
].
$_SERVER
[
'REQUEST_URI'
]);
exit
();
}
?>
Como fazer usando o arquivo .htaccess (recomendado):
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https:
//www.seudominio.com.br/$1 [R,L]