“PHP -Browser -Cache klar” Code-Antworten

So verhindern Sie den Browser -Cache für die PHP -Site

Here, if you want to control it through HTML: do like below Option 1:

<meta http-equiv="expires" content="Sun, 01 Jan 2014 00:00:00 GMT"/>
<meta http-equiv="pragma" content="no-cache" />
  
And if you want to control it through PHP: do it like below Option 2:

header('Expires: Sun, 01 Jan 2014 00:00:00 GMT');
header('Cache-Control: no-store, no-cache, must-revalidate');
header('Cache-Control: post-check=0, pre-check=0', FALSE);
header('Pragma: no-cache');

AND Option 2 IS ALWAYS BETTER in order to avoid proxy based caching issue.
Clever Cicada

PHP -Browser -Cache klar

my website dharmsaar icon replase but icon is not changes cache problem
please re...???
Pintu Kumar Saini

Ähnliche Antworten wie “PHP -Browser -Cache klar”

Fragen ähnlich wie “PHP -Browser -Cache klar”

Weitere verwandte Antworten zu “PHP -Browser -Cache klar” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen