2016年3月2日 星期三

[PHP/HTML]避免頁面快取

 

HTML Meta Tag


<meta http-equiv="cache-control" content="no-cache">
//舊寫法,為了相容性添加。
<meta http-equiv="pragma" content="no-cache">
//設為立即過期。
<meta http-equiv="expires" content="0">

PHP


header("Expires: Mon, 26 Jul 1990 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");

以下為另一種方法, 以參數方式使其為新URL。


if (!is_numeric($_GET['_']) || $_GET['_'] < time()) {
$_GET['_'] = time();
header('location: http://'.$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF']. '?' . http_build_query($_GET));
}

Smarty


<!-- 此方式可以避免瀏覽器快取(時效為一天) -->
http://blog.dkstu.com{$smarty.now|date_format:"%Y%m%d"}

 

 

沒有留言:

張貼留言