Пример кода php для редиректа на https
Материал из Wiki - Iphoster - the best ever hosting and support. 2005 - 2024
Версия от 09:32, 2 июля 2021; Admin iph (обсуждение | вклад) (Новая страница: «=== Пример кода php для редиректа на https === if( cfgset("cfgSSL") == "on" ) { $http = "https"; if(!isset($_SERVER['HTTPS']) |...»)
Пример кода php для редиректа на https
if( cfgset("cfgSSL") == "on" ) { $http = "https"; if(!isset($_SERVER['HTTPS']) || $_SERVER['HTTPS'] == ""){ $redirect = "https://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; header("HTTP/1.1 301 Moved Permanently"); header("Location: $redirect"); } } else { $http = "http"; }