Ver Mensaje Individual
  #3 (permalink)  
Antiguo 14/05/2012, 13:31
elleviatan
 
Fecha de Ingreso: mayo-2012
Mensajes: 28
Antigüedad: 11 años, 11 meses
Puntos: 0
Respuesta: Problema con un tema del FAQ (Evitar que una imagen quede en la Caché del

Bueno, el caso es que he corregido el index y ahora me carga las imagenes (le faltaba una barra diagonal al src), pero las imagenes aparecen en el cache y se supone que no ¿no?

Lo estoy probando en local con xamp y cuando voy a about:cache, ahi estan las imagenes.

Código:
about:cache

http://localhost/favicon.ico
http://localhost/Pruebas/Evitar_Cache/ver_imagen.php?imagen=/Render_004.png
http://localhost/Pruebas/Evitar_Cache/ver_imagen.php?imagen=/Render_002.png
http://localhost/Pruebas/Evitar_Cache/ver_imagen.php?imagen=/Render_001.png
http://localhost/Pruebas/Evitar_Cache/img/Render_003.png

Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>
<img src="ver_imagen.php?imagen=/Render_001.png">
<img src="ver_imagen.php?imagen=/Render_002.png">
<img src="img/Render_003.png">
<img src="ver_imagen.php?imagen=/Render_004.png">
</body>
</html>