通过 .net 中的 web.config 利用浏览器缓存?

发布于 2024-11-03 03:45:28 字数 180 浏览 1 评论 0原文

有些站点位于共享主机(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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

话少情深 2024-11-10 03:45:28

以下是我在共享主机上的网站上的做法。我相信 cacheControlMaxAge 如下:天:小时:分钟:秒,但不要引用我。

<system.webServer>  
    <staticContent>
        <clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="3.00:00:00" />
    </staticContent>
</system.webServer>

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.

<system.webServer>  
    <staticContent>
        <clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="3.00:00:00" />
    </staticContent>
</system.webServer>
邮友 2024-11-10 03:45:28

Google PageSpeed Tools 将通过在 web.config 文件中提供 cacheControlMaxAge 来提高评级,但如果您想完全解决问题,请使用 7 天(表示为天:小时:分钟:秒)作为捕获最大年龄,

这里是解决它的代码
将此代码放入您的 web.config

<system.webServer>
 <staticContent>
  <clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="7.24:00:00" />

  </staticContent>
</system.webServer>

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

<system.webServer>
 <staticContent>
  <clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="7.24:00:00" />

  </staticContent>
</system.webServer>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文