\webroot の下にあるものについてはAsset.timestamp
、core.php の設定を参照してください。
/**
* Apply timestamps with the last modified time to static assets (js, css, images).
* Will append a querystring parameter containing the time the file was modified. This is
* useful for invalidating browser caches.
*
* Set to `true` to apply timestamps when debug > 0. Set to 'force' to always enable
* timestamping regardless of debug value.
*/
Configure::write('Asset.timestamp', true);
これを機能させるには、Cake ヘルパーを使用してアセットを作成する必要があります (例: $this->Html->image()
、$this->Html->css()
など)。