2012-05-28 61 views

回答

0
Cache-Control: no-cache, must-revalidate 
Expires:Sat, 26 Jul 1997 05:00:00 GMT 

是你可能想要的東西。

+0

嗨,我已經試過了頭,它不working.From HTTP頭文件,我可以看到,沒有店面也比沒有更好的選擇 - 緩存和IE 8的工作正常,但與IE 9沒有關係。 – user1421844

+0

我還沒有手頭的代碼,但我以前用過這個。我相信這些標題如上所述。 – Death

+1

Cache-Control:no-cache,必須重新驗證,max-age = 0 – Rusted

1
response.setDateHeader("Expires", 1L); 
response.setHeader("Pragma", "no-cache"); 
response.setHeader("Cache-Control", "no-cache"); 
response.addHeader("Cache-Control", "no-store"); 

是我通常使用的。

1

我已經使用這個,它的工作原理。

// Set to expire far in the past. 
response.setHeader("Expires", "Mon, 23 Aug 1982 12:00:00 GMT"); 

// Set standard HTTP/1.1 no-cache headers. 
response.setHeader("Cache-Control", "no-store, no-cache, must-revalidate"); 

// Set IE extended HTTP/1.1 no-cache headers (use addHeader). 
response.addHeader("Cache-Control", "post-check=0, pre-check=0"); 

// Set standard HTTP/1.0 no-cache header. 
response.setHeader("Pragma", "no-cache"); 
相關問題