キャッシュ制御の推奨事項
2021/07/13
AppController.phpに
use Cake\I18n\Time;
を追加
initialize()内に、
// HTTP/1.0
header( 'Pragma: no-cache' );
// HTTP/1.1
$this->response = $this->response->withDisabledCache();
$this->response = $this->response->withExpires(new Time('01 Dec 1994 16:00:00'));
を追加