Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚刚将一个新网站上传到www.mydomain.com. 旧站点立即重定向到www.mydomain/cart/index.php.
www.mydomain.com
www.mydomain/cart/index.php
问题是我的新站点也有一个购物车文件夹。/cart即使我不再有此重定向设置,浏览器似乎也会自动重定向到。
/cart
如何强制浏览器重新缓存或更新其缓存的重定向?
假设您的 URL 是一个很大的随机数http:/www.mydomain.com?a=b&c=d 重定向到。浏览器应将此解释为新请求。http:/www.mydomain.com?a=b&c=d&nocache=12345678901234567890
http:/www.mydomain.com?a=b&c=d
http:/www.mydomain.com?a=b&c=d&nocache=1234567890
1234567890
您使用 php 的解决方案在这里。
如果您需要使用 HTML 清除它
<meta http-equiv="Pragma" content="no-cache"> <meta http-equiv="no-cache"> <meta http-equiv="Expires" content="-1"> <meta http-equiv="Cache-Control" content="no-cache">
参考这里。