Merge pull request #10167 from inietov/bug/sc-17520/symfony_component_debug_exception_fatalthrowableerror
Set headers in a different manner in the middleware [sc-17520]
This commit is contained in:
commit
17d4e25e60
1 changed files with 10 additions and 3 deletions
|
@ -15,9 +15,16 @@ class PreventBackHistory
|
||||||
*/
|
*/
|
||||||
public function handle($request, Closure $next)
|
public function handle($request, Closure $next)
|
||||||
{
|
{
|
||||||
|
$headers = [
|
||||||
|
'Cache-Control' => 'nocache, no-store, max-age=0, must-revalidate',
|
||||||
|
'Pragma' => 'no-cache',
|
||||||
|
'Expires' => 'Sun, 02 Jan 1990 00:00:00 GMT'
|
||||||
|
];
|
||||||
$response = $next($request);
|
$response = $next($request);
|
||||||
return $response->header('Cache-Control','no-cache, no-store, max-age=0, must-revalidate')
|
foreach($headers as $key => $value) {
|
||||||
->header('Pragma','no-cache')
|
$response->headers->set($key, $value);
|
||||||
->header('Expires','Sun, 02 Jan 1990 00:00:00 GMT');
|
}
|
||||||
|
|
||||||
|
return $response;
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue