Ver Mensaje Individual
  #1 (permalink)  
Antiguo 18/09/2015, 15:11
Avatar de ASLAN
ASLAN
 
Fecha de Ingreso: septiembre-2007
Mensajes: 419
Antigüedad: 17 años, 2 meses
Puntos: 2
Pregunta Redireccionamientos en PHP desde/hacia https

Hola
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;

El ÚNICO cambio fue pasar "http" a "https"


Alguna idea de cuál será el error?
Gracias
__________________
Registros Akáshicos