几个小时前,我在 htaccess 中使用以下代码将主页重定向到维护页面:
维护重定向
RewriteCond %{REQUEST_URI} !/maintenance/index.html$ [NC]
RewriteCond %{REQUEST_URI} !\.(jpe?g?|png|gif|js|css) [NC]
RewriteCond %{REMOTE_ADDR} !^92\.95\.110\.92
RewriteRule .* /maintenance/index.html [R=302,L]
然后我将代码注释掉以便能够再次显示页面,但是在将访问权限更改回之前重定向仍然发生。我也重新启动了服务器。然后我检查了一个在线工具的标题,这就是发生的事情:
Sun, 18 Nov 2018 07:57:58 GMT
Server:
Apache
Location:
http://www.website.com/maintenance/index.html
Cache-Control:
max-age=172800
Expires:
Tue, 20 Nov 2018 07:57:58 GMT
Content-Length:
231
Content-Type:
text/html; charset=iso-8859-1
Via:
1.1 varnish (Varnish/6.1), 1.1 varnish (Varnish/6.1)
X-Cache-Hits:
31
X-Cache:
HIT
Age:
5602
Connection:
keep-alive
Redirecting to: http://www.website.com/maintenance/index.html
看起来 302 重定向以某种方式缓存到 2018 年 11 月 20 日?
我试图在页面上添加以下代码,重新启动服务器。没有发生重定向,但页面完全空白:
<?php
header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); // Date in the past
?>
我可以重置这个“临时”302 重定向以尽快停止吗?并完全删除它?我可以访问 linux shell。非常感谢您的帮助。
感谢@MichaelHampton 的正确答案,我不得不通过 ssh 清除清漆现金:
$ curl -X PURGE –