mirror of
https://github.com/billz/raspap-webgui.git
synced 2025-12-27 07:31:09 +01:00
9 lines
181 B
PHP
9 lines
181 B
PHP
<?php
|
|
// cache-control headers
|
|
if (!headers_sent()) {
|
|
header("Cache-Control: no-store, no-cache, must-revalidate");
|
|
header("Pragma: no-cache");
|
|
header("Expires: 0");
|
|
}
|
|
|