wordpressでドキュメントの有効期限切れ対策
現象
POSTで検索結果を送信した後にブラウザバックするとこれが出る。
対策
バージョン
wordpress 5.4.1
対策方法
これをfunctions.phpに貼り付けたら終わり。
function add_header_session() {
header("Cache-Control: private");
header("Pragma: no-cahce");
header("Expires: ");
header("Last-Modified: ");
}
add_action( 'send_headers', 'add_header_session' );
備考
調べると以下のような対応方法も出てきますが、wordpressだとうまくいかないです。
session_cache_limiter("none");
// or
session_cache_limiter("private_no_expire");
// をsession_start()の前につける
Author And Source
この問題について(wordpressでドキュメントの有効期限切れ対策), 我々は、より多くの情報をここで見つけました https://qiita.com/nchhujimiyama/items/1c40886ebdb9df6e0e84著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .