PHP

HTTPS 에서 FLASH가 XML을 못읽어오는 문제

SojuMan 2009. 7. 22. 21:01

 

  1. </FONT>Cache-Control: no-store   
  2. Cache-Control: no-store, must-revalidate   
  3. Cache-Control: no-store,max-age=0,must-revalidate   
  4. Cache-Control: max-age=0,must-revalidate   
  5. </FONT>Cache-Control: must-revalidate  



HTML
  1. <META http-equiv="Expires" content="-1">   
  2. <META http-equiv="Pragma" content="no-cache">   
  3. <META http-equiv="Cache-Control" content="no-store,max-age=0,must-revalidate ">  


ASP  
  1. <%     
  2. Response.Expires = 0     
  3. Response.AddHeader "Pragma","no-cache"     
  4. Response.AddHeader "Cache-Control","no-store,max-age=0,must-revalidate"     
  5. %>    


JSP  
  1. <%     
  2. response.setHeader("Cache-Control","no-store,max-age=0,must-revalidate");     
  3. response.setHeader("Pragma","no-cache");     
  4. response.setDateHeader("Expires",0);     
  5. if (request.getProtocol().equals("HTTP/1.1"))   
  6.         response.setHeader("Cache-Control", "no-store,max-age=0,must-revalidate");   
  7. %>    


PHP  
  1. <?     
  2. header("Pragma: no-cache");     
  3. header("Cache-Control: no-store,max-age=0,must-revalidate");     
  4. ?>