キャッシュ制御の推奨事項
AppController.phpに
use Cake\I18n\Time;を追加
initialize()内に、
1 2 3 4 5 |
// 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')); |
を追加
この投稿へのトラックバック
トラックバックはありません。
- トラックバック URL
この投稿へのコメント