Skip to content
Snippets Groups Projects
Commit f793a690 authored by Luke Leber's avatar Luke Leber
Browse files

Added 'no-store' to the cache-control header to prevent Google Chrome from...

Added 'no-store' to the cache-control header to prevent Google Chrome from serving the 302 redirect from disk cache
parent 9f35fdab
No related branches found
No related tags found
No related merge requests found
...@@ -176,7 +176,7 @@ class HTTP ...@@ -176,7 +176,7 @@ class HTTP
// disable caching of this response // disable caching of this response
header('Pragma: no-cache'); header('Pragma: no-cache');
header('Cache-Control: no-cache, must-revalidate'); header('Cache-Control: no-cache, no-store, must-revalidate');
} }
// show a minimal web page with a clickable link to the URL // show a minimal web page with a clickable link to the URL
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment