我正在调试一个HTTP 301永久重定向的问题。经过快速测试,Safari似乎在重新启动时清除了它的301缓存,但Firefox却没有。

IE、Chrome、Firefox和Safari什么时候清空它们的301缓存?

For example, if I want to redirect 1.example to 2.example, but I accidentally set it to redirect to 3.example, that is a problem. I can correct the mistake, but anyone who has visited 1.example in the meantime will have cached the incorrect redirect to 3.example, and so they will not be able to reach either 1.example or 2.example until their cache is cleared. Upon investigation, I find that there were no Cache-Control and Expires headers set. The headers for the incorrect 301 response would have been like this:

HTTP/1.1 301 Moved Permanently
Date: Wed, 27 Feb 2013 12:05:53 GMT
Server: Apache/2.2.21 (Unix) DAV/2 PHP/5.3.8
X-Powered-By: PHP/5.3.8
Location: http://3.example/
Content-Type: text/html

我自己的测试表明:

IE7, IE8, Android 2.3.4完全不缓存。 Firefox 18.0.2、Safari 5.1.7(适用于Windows 7)和Opera 12.14都有缓存,并在重新启动浏览器时清除缓存。 IE10和Chrome 25缓存,但不清楚浏览器重启,所以他们什么时候会清除?


当前回答

在最新的谷歌Chrome版本79上,可以使用Chrome://net-internals 并从左侧面板选择DNS,然后点击清除主机缓存按钮

其他回答

为了解决localhost地址的问题,我更改了站点运行的端口号。这适用于Chrome版本73.0.3683.86。

使用隐身/InPrivate模式测试重定向,这样当你关闭浏览器时,它会刷新缓存,重新打开窗口时将不包含缓存。

一个帮助那些迫切想摆脱重定向缓存的人的答案:

Chrome无限缓存301重定向(在本地磁盘缓存中)。清除缓存。

打开你的开发工具(按F12) 在“网络”选项卡上选中“禁用缓存”复选框 保持DevTools打开并重新加载页面(按F5)

当一切正常时,您可以取消“禁用缓存”,一切将继续按预期工作。

Chrome 71

要清除永久重定向,转到chrome://settings/clearBrowserData,从那里只清除“缓存的图像和文件”清除重定向。

Chrome 48 - 70

转到chrome://net-internals。在顶部红色状态栏右侧,点击向下箭头▼打开下拉菜单,在“工具”组下,选择“清空缓存”。

在48版中,这是唯一对我有效的清除缓存301的方法。

为了测试目的(避免缓存重定向),人们可以打开NEW PRIVATE WINDOW:点击CTRL+SHIFT+N[如果你使用Mozilla,使用P]