入力フォームがあるページでプラウザの戻るボタンを押したときに「ERR_CACHE_MISS」エラーを出さず正常にページ移動を行いたいのですが何かいい方法はございますでしょうか?
・使用言語:CakePHP
・試したこと
上記サイト参考:session_start();がないため、this->Session->read下に書いてみましたがうまくいきません
CakePHP
1 $this->history = null; 2 $this->history['last_url']['every'] = $this->Session->read('Request.last_url.every'); 3 $this->history['last_url']['lists'] = $this->Session->read('Request.last_url.lists'); 4 header('Expires: -1'); 5 header('Cache-Control:'); 6 header('Pragma:');
https://www.it-swarm.dev/ja/php/php-form-submit%e3%81%a7%e6%88%bb%e3%82%8b/1041888537/
上記サイト参考:session_start();がないため、this->Session->read上に書いてみましたがうまくいきません
CakePHP
1 header('Cache-Control: no cache'); //no cache 2 session_cache_limiter('private_no_expire'); // works 3 $this->history = null; 4 $this->history['last_url']['every'] = $this->Session->read('Request.last_url.every'); 5 $this->history['last_url']['lists'] = $this->Session->read('Request.last_url.lists');
CakePHP、session_start();定義のない場合のいい対処法はございますでしょうか?