Hola. Mirad, tengo este codigo en el inicio del index
Código PHP:
Ver originalheader("Content-Type: text/html;charset=utf-8"); /*FUNCIONES PARA QUE TIRE DE LA CACHÉ, O NO:*/
function si_cache()
{
header('expires: Sat, 10 May 2014 13:22:48 GMT'); return;
}
function no_cache()
{
header('pragma: public'); # HTTP/1.0 header('expires: Sat, 11 May 2013 13:22:48 GMT'); @header('last-modified: ' . gmdate('D, d M Y H:i:s') . ' gmt'); # ! @header('cache-control: no-store, no-cache, must-revalidate'); # HTTP/1.1 header('cache-control: private, post-check=0, pre-check=0, max-age=0', FALSE); # HTTP/1.1 header('pragma: no-cache'); # HTTP/1.0 return;
}
si_cache();
Se os ocurre alguna idea de que, a pesar de tener este codigo en el inicio del index, la informacion que me devuelve de las cabeceras que envio es:
Date: Fri, 21 Jun 2013 10:39:41 GMT
Server: Apache
X-Powered-By: PHP/5.4.16
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Keep-Alive: timeout=2, max=200
Connection: Keep-Alive
Transfer-Encoding: chunked
Content-Type: text/html;charset=utf-8
200 OK