1
我正在尋找方法來禁用瀏覽器緩存,整個Ruby on Rails的MVC網站ROR + MVC禁用瀏覽器緩存
我發現下面的方法,
Response.Cache.SetExpires(DateTime.Now.AddSeconds(5));
Response.Cache.SetCacheability(HttpCacheability.Public);
Response.Cache.SetValidUntilExpires(true);
,也爲元標記方法。
<meta http-equiv="PRAGMA" content="NO-CACHE">
但我在尋找簡單的方法,爲整個網站禁用瀏覽器緩存。
答案對於以上問題如下! – Rubyist 2011-03-29 07:30:09