Answers for "htaccess not redirecting to https"

0

redirect https

if ($_SERVER['HTTPS'] != "on") 
{
    $url = "https://". $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];
    header("Location: $url");
    exit;
}
Posted by: Guest on November-07-2020

Code answers related to "htaccess not redirecting to https"

Browse Popular Code Answers by Language