我需要能够将站点置于“维护模式”。所以我在 app.php 中使用了一个像这样的廉价黑客(原来的 app.php 被移到了 app.php.bak):
<?php
$key = 123;
if(isset($_GET['skip_maintenance_key']) && $_GET['skip_maintenance_key'] == $key) {
setcookie('skip_maintenance_key', $key);
}
if(isset($_COOKIE['skip_maintenance_key']) && $_COOKIE['skip_maintenance_key'] == $key) {
include 'app.php.bak';
// placeholder
} else {
//header('Cache-Control: public, maxage=30');
header('Status: 503 Service Unavailable');
include 'html/error/503.html';
}
问题是,只要我点击一个使用 http 缓存的页面,该页面就会被 Cloudflare 或我自己的代理等中介缓存,并开始提供给所有人。
所以我想做的是在维护期间以某种方式全局禁用http缓存,也许在中添加一行代码// placeholder
?
有任何想法吗?