Wednesday, April 9, 2008

PHP header work with Squid cache server

header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");

对于动态页面,则可以直接通过写入HTTP返回的头信息,比如对于新闻首页index.php可以是20分钟,而对于具体的一条新闻页面可能是1天后过期。比如:在php中加入了1个月后过期:

// Expires one month later
header("Expires: " .gmdate ("D, d M Y H:i:s", time() + 3600 * 24 * 30). " GMT");

No comments:

Post a Comment