0

有没有办法在 Magento 中为某些资源(如 CSS 和/或 JS 文件)设置 TTL?如果没有,有没有办法为所有资源设置它?我搜索了网络,但找不到太多。

谢谢你的帮助!:)

4

1 回答 1

1

也许您想使用 .htaccess 文件:

<IfModule mod_expires.c>

############################################
## Add default Expires header
## http://developer.yahoo.com/performance/rules.html#expires

    ExpiresDefault "access plus 1 year"

</IfModule>

例子:

<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType text/css "access plus 1 week"
ExpiresByType application/javascript "access plus 1 month"
ExpiresByType application/x-javascript "access plus 1 month"
ExpiresByType image/gif "access plus 1 month"
ExpiresByType image/jpeg "access plus 1 month"
ExpiresByType image/png "access plus 1 month"
ExpiresByType image/x-icon "access plus 1 year"
</IfModule>
于 2013-06-10T13:06:57.610 回答