mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-12 14:27:33 -08:00
Set headers in a different manner in the middleware
This commit is contained in:
parent
84c73aae5d
commit
ef6eea67d8
|
@ -15,9 +15,16 @@ class PreventBackHistory
|
|||
*/
|
||||
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);
|
||||
return $response->header('Cache-Control','no-cache, no-store, max-age=0, must-revalidate')
|
||||
->header('Pragma','no-cache')
|
||||
->header('Expires','Sun, 02 Jan 1990 00:00:00 GMT');
|
||||
foreach($headers as $key => $value) {
|
||||
$response->headers->set($key, $value);
|
||||
}
|
||||
|
||||
return $response;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue