Ver Mensaje Individual
  #1 (permalink)  
Antiguo 24/06/2010, 04:54
miguelaniez
 
Fecha de Ingreso: octubre-2008
Mensajes: 44
Antigüedad: 15 años, 6 meses
Puntos: 1
Problema cache IE redireccion javascript

Buenas,

Tengo la siguiente estructura

/2009/html/index.html
/2010/html/index.html

dentro de /2009 tengo un index.html con
<script>
window.location.replace ("/2009/html/index.html");
</script>

y dentro de /2010
<script>
window.location.replace ("/2010/html/index.html");
</script>

El caso es que al acceder con IE a http://xxxx.com/2010 me lleva a http://xxxx.com/2009/html/index.html, esto será problema de la cache de IE pq la limpio y voy a http://xxxx.com/2010 y redirecciona bien.

¿Es esto cierto? ¿Hay una soluccion mejor?

Gracias