Tengo el siguiente código que utilizo sin problemas en mis sitios web sin SSL
Código PHP:
// Verificar URL
$PageUrl = "http://" . $domain . "/" .$algo;
if ($PageUrl <> CurrentUrl()) {
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: " . $PageUrl );
exit;
}
Estoy migrando uno de ellos a "https" y en cada página que existe esta redirección, los browsers dan error acusando loop
Código PHP:
// Verificar URL
$PageUrl = "https://" . $domain . "/" .$algo;
if ($PageUrl <> CurrentUrl()) {
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: " . $PageUrl );
exit;
}
Alguna idea de cuál será el error?
Gracias