如何從PHP中的Cache頭中刪除max-age
參數?如何從PHP的Cache頭文件中刪除「max-age」參數?
如果我註釋掉PHP.ini
的session.cache_expire
變量,它只是設置最大年齡至10800.
如何從PHP中的Cache頭中刪除max-age
參數?如何從PHP的Cache頭文件中刪除「max-age」參數?
如果我註釋掉PHP.ini
的session.cache_expire
變量,它只是設置最大年齡至10800.
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
?>
我不想刪除緩存,我只需要刪除最大年齡參數。 'session_cache_expire(0);'只會設置'max-age = 0',它不會刪除它。 – ProgrammerGirl
不知道爲什麼你想這樣做,但這可能有所幫助。 http://serverfault.com/questions/295982/htaccess-how-to-remove-cache-controls-max-age – raidenace
嘗試用-1或0 – Elbek