Podemos saber si la URL actual es http o https con el siguiente snippet:
$protocol = "http://";
if(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on") {
$protocol = "https://";
}
Podemos saber si la URL actual es http o https con el siguiente snippet:
$protocol = "http://";
if(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on") {
$protocol = "https://";
}