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.
max-agePHPのキャッシュヘッダーからパラメータを削除するにはどうすればよいですか?
max-age
session.cache_expireの変数をコメントアウトすると、PHP.inimax-ageが10800に設定されます。
session.cache_expire
PHP.ini
session_cache_expire(0);
または、キャッシュを削除する場合は、次を使用します。
<?php header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1 header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); // Date in the past ?>