Header () php ile yardım

0 Cevap php

Merhaba ben geri tuşuna basıldığında sunucudan bir komut dosyası yenilemek istiyorum. Bunun için, ben bu kodu kullanıyorum:

header( "Last-Modified: " . gmdate( "D, j M Y H:i:s" ) . " GMT" ); 
header( "Expires: " . gmdate( "D, j M Y H:i:s", time() ) . " GMT" ); 
header( "Cache-Control: no-store, no-cache, must-revalidate" ); // HTTP/1.1 
header( "Cache-Control: post-check=0, pre-check=0", FALSE ); 
header( "Pragma: no-cache" ); // HTTP/1.0

But it seems the browsers (IE 8, FF 3.6) are still "caching" the page. Any help will be appreciated.

0 Cevap