remove post-check and pre-check - discouraged IE-only Cache directives

pull/205/head
marjatech 2025-01-09 12:35:10 +01:00
parent 654ac748f3
commit 7455adbfc0
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
<?php
$proto = (isset($_SERVER['SERVER_PROTOCOL']))?($_SERVER['SERVER_PROTOCOL']):('HTTP/1.1');
header($proto.' 503 Service Unavailable', true);
header('cache-control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0');
header('cache-control: no-store, no-cache, must-revalidate');
header('retry-after: 30');
header('refresh: 30');
?>