通过 .net 中的 web.config 利用浏览器缓存?
有些站点位于共享主机(Windows 2003 Server)上,因此我无法访问服务器配置。
我到处都读到了有关利用浏览器缓存的内容,特别是静态文件(jpg、css、js 等),但是......在我的情况下如何做到这一点?
主机已安装 .NET,web.config 文件可以以某种方式提供帮助吗?如果是,怎么办?
Some of sites are on shared hosting (Windows 2003 Server), so I have no way to access server configuration.
I read everywhere about leverage browser caching, expecially for static files (jpg, css, js, etc.) but... how to do this in my case?
The hosting has .NET installed, could a web.config file help in some way? If yes, how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以下是我在共享主机上的网站上的做法。我相信 cacheControlMaxAge 如下:天:小时:分钟:秒,但不要引用我。
Here is how I did on my site that is on a shared host. I believe the cacheControlMaxAge is as follows days:hours:minutes:seconds but dont quote me.
Google PageSpeed Tools 将通过在 web.config 文件中提供 cacheControlMaxAge 来提高评级,但如果您想完全解决问题,请使用 7 天(表示为天:小时:分钟:秒)作为捕获最大年龄,
这里是解决它的代码
将此代码放入您的 web.config
Google PageSpeed Tools will improve rating by providing cacheControlMaxAge in your web.config file but if you want to solve issue completly then use 7 day (represented as days:hours:minutes:seconds) for catch max age
here is code to solve it
put this code in to your web.config