How to avoid the cache in firefox

0

Good, I wanted to know what else there is to prevent firefox from using the cache, to save our website, now I use the goals

<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="-1" />
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />

But I have not managed to avoid the cache, it is worth clarifying that I am using laravel 5.4 for the development of the web.

    
asked by Carlos Alexander Lemus Mojica 19.05.2017 в 06:34
source

1 answer

1
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />

You need a few methods among them no-store and must-revalidate .
THESE LABELS ONLY WORK WITH HTML 4.0 OR HIGHER

    
answered by 19.05.2017 в 08:29