반응형
<?php
header("Last-Modified: " . gmdate( "D, j M Y H:i:s" ) . " GMT"); // Date in the past
header("Expires: " . gmdate( "D, j M Y H:i:s", time() ) . " GMT"); // always modified
header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
header("Cache-Control: post-check=0, pre-check=0", FALSE);
header("Pragma: no-cache");
?>


상단에 이거 넣어주면 됨...대신 이거 넣어주면 매번 새로 로딩하기때문에 체감속도가 좀 느려짐



반응형

+ Recent posts