缓存特定的 Javascript 和 CSS 文件

发布于 12-06 11:09 字数 504 浏览 0 评论 0 原文

我如何缓存一些特定的 JavaScript 和 JavaScript? CSS 文件。我从这个网站找到了将其放入我的 .htaccess 文件的建议,

AddOutputFilter DEFLATE css js
ExpiresActive On
ExpiresByType application/x-javascript A2592000

但它不完整。什么是 .htaccess 以及如何创建它,将其存储在我的 Web 根文件夹中的何处?

以下语句的含义是什么:

AddOutputFilter DEFLATE css js
ExpiresActive On
ExpiresByType application/x-javascript A2592000

我不想缓存我所有的 Javascript & CSS 文件而只是一些永远不会改变的特定文件。

我该怎么做?

How can I cache a few specific JavaScript & CSS files. I found advice from this site to put this in my .htaccess file

AddOutputFilter DEFLATE css js
ExpiresActive On
ExpiresByType application/x-javascript A2592000

But it is incomplete. What is .htaccess and how do I create it, where to store it, in my web root folder?

What is the meaning of the following statements:

AddOutputFilter DEFLATE css js
ExpiresActive On
ExpiresByType application/x-javascript A2592000

I dont want to cache all my Javascript & CSS files rather just a few specific files which will never change.

How can I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

听你说爱我 2024-12-13 11:09:40

您可以将 IIS 配置为按扩展名缓存特定文件。例如:

选择 css/js 文件所在的文件夹,然后单击“输出缓存”。
在此处输入图像描述

然后添加您要缓存的文件扩展名:

"="" alt="在此处输入图像描述">

我认为您无法指定每个文件要缓存哪些图像,除非您编写一个 http handler 模块来添加每个文件独立的适当的标头,但是从 IIS 中,这是如何完成的。

然后您可以使用 firebug / fiddler 或您选择的工具验证是否收到 304 响应。

我希望这有帮助。

You can configure IIS to cache specific files by extension. For example:

Select the folder where your css/js files reside and then click on Output Caching.
enter image description here

Then add the file extensions that you want to cache:

enter image description here

I don't think you can specify which ones to cache on a per file basis unless you write an http handler module to add the appropriate headers for each file independently, but from IIS this is how is done.

Then you can verify that you are getting 304 responses using firebug / fiddler or your tool of choice.

I hope this is helpful.

七禾 2024-12-13 11:09:40

太酷了,无论如何我都会添加文件修订并让 IIS 缓存 css + js 文件。
正如伊卡洛斯指定的那样。

然后,如果您更新服务器上的文件,只需添加新的修订号,这也可能是时间戳。

That's cool i would anyways add a file revisions and make IIS cache css + js files.
As Icarus specified.

Then if you update the files on the server just add a new revision number this could also be a timestamp.

自由如风 2024-12-13 11:09:40
  1. AddOutputFilter DEFLATE:输出在之前被压缩(通常是 gzip)
    在本例中发送到服务器 css & js 你的 css 和 js。
  2. ExpiresActive On:将 Expires 和缓存控制标头设置为 On
  3. ExpiresByType:将本例中内容类型的过期规则 application/x-javascript 设置为一个月 A2592000 => 24 * 3600 * 30 其单位是毫秒

我建议不要通过 .htaccess 处理特定的 js,而是应该向 js 文件添加修订号,ala:

然后,当您更新文件时,只需更新版本号即可。
您的客户将自动收到新文件。

资源:

  1. AddOutputFilter DEFLATE: output is compressed(usually gzip) before
    sent to server in this case css & js your css and js.
  2. ExpiresActive On: Sets Expires and cache control headers to On
  3. ExpiresByType: Set the expire rule for the content type in this case application/x-javascript to a month A2592000 => 24 * 3600 * 30 its in ms.

I would recommend to instead of handling specific js via .htaccess you should add a revisions number to your js files, ala:

<script src="link/to/file.js?rev=xxx"></script>

Then when you update your files just update the rev number.
And your clients will automatically be served the new files.

Resources:

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