Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
257 views
in Technique[技术] by (71.8m points)

cache-control:max-age和If-Modified-Since

我想实现在php服务器端,设置一个即使文件修改也不过期的文件。

if (isset($headers['If-Modified-Since']) && (strtotime($headers['If-Modified-Since']) == filemtime($fn))) {
      
        header('Last-Modified: '.gmdate('D, d M Y H:i:s', filemtime($fn)).' GMT', true, 304);
    } else {
       
         header('Last-Modified: '.gmdate('D, d M Y H:i:s', filemtime($fn)).' GMT', true, 200);
        header('Content-Length: '.filesize($fn));
         header("Cache-Control: max-age=100000");
         header("Expires: Sat, 26 Jul 2019 05:00:00 GMT"); // Date in the past

        $content=file_get_contents($fn);
        echo $content;
    }

那么问题就是

header("Cache-Control: max-age=100000");
header("Expires: Sat, 26 Jul 2019 05:00:00 GMT");

这两个我已经设置了足够不过期的情况,按道理说浏览器会认为到期时间没到,就不会重新像服务器请求。
(请忽略我的if段,)
我这个问题类似https://segmentfault.com/q/10...这里的问题。
基于什么语言实现不一致?
我的观点是:只要文件更改,或者etag更改,所有的cache-control:max-age,包括expires 都会失效,对吗??


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...