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