Ver Mensaje Individual
  #3 (permalink)  
Antiguo 09/08/2009, 19:28
Avatar de CHUJALT
CHUJALT
 
Fecha de Ingreso: enero-2002
Mensajes: 60
Antigüedad: 22 años, 3 meses
Puntos: 0
Respuesta: Redireccionamiento basado en el idioma o pais

Prueba con esto.... a mi me funciona

<?php
if(empty($sitelang)){
$sitelang = getenv("HTTP_ACCEPT_LANGUAGE");
}
switch($sitelang){
case "es" : //es = español
header("Location: spanish/index.php");
break;
default :
header("Location: english/index.php");
break;
}

exit();
?>
__________________
http://www.chujalt.com