개발자의 끄적끄적

[개발] html / asp / jsp / php 웹서버별 만료된 페이지 해결방안(POST) 본문

개발

[개발] html / asp / jsp / php 웹서버별 만료된 페이지 해결방안(POST)

효벨 2020. 10. 17. 02:00
728x90
반응형

[개발] html / asp / jsp / php 웹서버별 만료된 페이지 해결방안(POST)

 

HTML인 경우

  <META http-equiv=”Expires” content=”-1″>
  <META http-equiv=”Pragma” content=”no-cache”>
  <META http-equiv=”Cache-Control” content=”No-Cache”>

ASP인 경우

<%  
  Response.Expires = 0  
  Response.AddHeader “Pragma”,”no-cache”  
  Response.AddHeader “Cache-Control”,”no-cache,must-revalidate”  
%>  

JSP인 경우

<%  
  response.setHeader(“Cache-Control”,”no-store”);  
  response.setHeader(“Pragma”,”no-cache”);  
  response.setDateHeader(“Expires”,0);  
  if (request.getProtocol().equals(“HTTP/1.1”))
          response.setHeader(“Cache-Control”, “no-cache”);
%>  

PHP인 경우

<?  
  header(“Pragma: no-cache”);  
  header(“Cache-Control: no-cache,must-revalidate”);  
?>

 

 

출처 : idchowto.com/?p=28821

반응형
Comments