Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
キャッシュページの場合、これをインデックスページに設定します
ini_set('session.cache_limiter', 'private');
ログアウト プロセス中にすべてのキャッシュされたコンテンツを削除したい (キャッシュされたコンテンツをすべてユーザー ブラウザから削除したい) 場合、どうすれば同じことができますか?
Check the following.
session_cache_limiter( 'nocache' );
OR
session_cache_expire(30);