Add Cache-Control to search.php.

This commit is contained in:
Retro_Guy 2023-08-09 07:12:32 -07:00
parent 4b6068d906
commit 341b6889ee
1 changed files with 4 additions and 0 deletions

View File

@ -2,6 +2,10 @@
session_cache_limiter('public');
session_start();
header("Expires: ".gmdate("D, d M Y H:i:s",time()+(600))." GMT");
header("Cache-Control: max-age=100");
header("Pragma: cache");
include "config.inc.php";
include "newsportal.php";