Ssl'in aktif olmasını istediğin sayfaların başına bunu ekle.


if (isset($_SERVER['HTTPS']) &&
($_SERVER['HTTPS'] == 'on' || $_SERVER['HTTPS'] == 1) ||
isset($_SERVER['HTTP_X_FORWARDED_PROTO']) &&
$_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') {
$protocol = 'https://';
}
else {
$protocol = 'http://';
}


if($protocol=='http://') {

$url = 'https://'.$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'];
header("Location:$url");

}