指定可以缓存多少时间CSS或JS

Specify how much time CSS or JS can be cached

我必须在哪里以及如何放置浏览器可以缓存我的 CSS 和 JS 的时间。

任何人都可以举例说明我必须如何指定 CSS 可以存储一年吗?。

我在 Apache 中使用 Ubuntu,Laravel 5.2 (php)

谢谢

您可以为此使用 .htaccess - 添加如下内容:

<IfModule mod_expires.c>
# Enable expirations
ExpiresActive On
# Default directive
ExpiresDefault "access plus 1 month"
# CSS
ExpiresByType text/css "access 1 year"
# Javascript
ExpiresByType application/javascript "access plus 1 year"
</IfModule>