Skip to main content

Ensure your page is served over a secure connection.

<?php
if ($_SERVER['SERVER_PORT'] != '443') {
    header('Location: https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']);
    exit();
}
?>