ASP.NET MVC 在提供 Javascript/CSS 文件时更改响应标头
当浏览器请求 Javascript 或 CSS 文件时,有没有办法自动更改 ASP.NET MVC 中的响应标头?
基本上,我希望我的 Javascript 和 CSS 文件能够在响应标头中明确设置此设置:
Cache-Control: public
有帮助吗?
Is there a way to automatically change the response header in ASP.NET MVC when the browser requests a Javascript or CSS file?
Basically, I want my Javascript and CSS files to be served with this set explicitly on in the response header:
Cache-Control: public
Help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能会发现这篇文章对于将过期或缓存控制标头添加到 IIS 中的静态内容很有用。
希望有帮助。
http://www.iis.net/ConfigReference/system.webServer/staticContent/客户端缓存
Here is an article you may find useful for adding Expires or Cache Control Header to static content in IIS.
Hope it helps.
http://www.iis.net/ConfigReference/system.webServer/staticContent/clientCache
如果您有权访问http服务器,您可以使用某种重写机制将其放在http层上 - 这将是最快的方法。一些硬件负载平衡器也允许这样做。
If you have access to http server you can make it on http layer using some rewrite mechanism - it will be fastest way. Some hardware loadbalancer also allows this.