Ver Mensaje Individual
  #3 (permalink)  
Antiguo 16/11/2006, 10:58
informante
 
Fecha de Ingreso: junio-2006
Mensajes: 16
Antigüedad: 18 años, 7 meses
Puntos: 0
Si usas PHP puedes modificar los encabezados:
<?php
header("Cache-Control: no-cache, must-revalidate");
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
?>


otro mas avanzado seria:
<?php
//[HTTP_USER_AGENT] => Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)
if(!strpos(strtolower($_SERVER[HTTP_USER_AGENT]), "msie") === FALSE)
{
header("HTTP/1.x 205 OK");
} else {
header("HTTP/1.x 200 OK");
}

header("Pragma: no-cache");
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
//header("Expires: -1");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); // immer geändert
//header("Cache-Control: no-store, no-cache, must-revalidate"); // HTTP/1.1
header("Cache-Control: no-cache, cachehack=".time());
header("Cache-Control: no-store, must-revalidate");
header("Cache-Control: post-check=-1, pre-check=-1", false);
?>

hay otras instrucciones mas que te pueden ayudar en la documentacion de PHP en la funcion header() (solo si usas PHP) por HTML o javascript no hay mucho acceso a estas acciones.