0

我需要能够将站点置于“维护模式”。所以我在 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

有任何想法吗?

4

2 回答 2

0

我读到 Fabien 说(在被拒绝的拉取请求中)这应该由 Web 服务器处理。所以我改变了我的维护脚本来修改服务器配置而不是框架。

问题是服务器无法删除缓存头。但后来我发现NginxHttpHeadersMoreModule工作得很好,所以问题解决了。

于 2013-02-02T22:31:13.060 回答
-1

如果您有权访问 httpd.conf,您可以添加:

Header set Cache-Control no-cache
Header set Expires 0

如果没有,请查看本教程

于 2013-02-01T20:56:37.800 回答