站內搜尋

Wednesday, March 6, 2024

[PHP] 如何解決 下載檔案的連結 因瀏覽器的快取(緩存) 無法下載到最新的檔案

//告訴瀏覽器不要緩存文件
header('Cache-Control: no-cache, no-store, must-revalidate'); // HTTP 1.1.
header('Pragma: no-cache'); // HTTP 1.0.
header('Expires: 0'); // Proxies.
//下載
header('Location: myfile/myzip.zip');

No comments:

Post a Comment