我正在寻找禁用Browser Cache for Chrome & Safari
我找到了以下方法,
Response.Cache.SetExpires(DateTime.Now.AddSeconds(5));
Response.Cache.SetCacheability(HttpCacheability.Public);
Response.Cache.SetValidUntilExpires(true);
以及元标记方法。
但我正在寻找简单的方法,禁用整个网站的浏览器缓存。
答案 0 :(得分:0)
我遇到了同样的问题并找到了一个很好的解决方案,并将其发布到
http://www.fordevs.com/2011/10/how-to-prevent-browser-from-caching-a-page-in-rails.html
要添加'no-cache',请在application_controller.rb文件中添加以下行
before_filter :set_no_cache
和功能
def set_no_cache
response.headers["Cache-Control"] = "no-cache, no-store, max-age=0, must-revalidate"
response.headers["Pragma"] = "no-cache"
response.headers["Expires"] = "Fri, 01 Jan 1990 00:00:00 GMT"
end