Ver Mensaje Individual
  #10 (permalink)  
Antiguo 19/07/2011, 04:08
markitus_11
 
Fecha de Ingreso: noviembre-2008
Mensajes: 100
Antigüedad: 15 años, 5 meses
Puntos: 1
Respuesta: Redirigir o mantener según idioma

Muchas gracias por tu ayuda GatorV, +1

Con lo que me diste pude hacer este código, mucho más simple, pero efectivo:

Código PHP:
<?php 
    $idioma 
substr($_SERVER['HTTP_ACCEPT_LANGUAGE'],0,2); 
    if(
$idioma != es) {
        
header("location: /en");
}
    
?>
Muchas gracias :D