阻止 IE 存储/缓存 URL 快捷方式

发布于 2024-12-05 08:36:13 字数 149 浏览 0 评论 0原文

似乎在本地桌面计算机上用户配置文件下的“临时 Internet 文件”中创建(缓存)了带有调用 URL 目标的快捷方式。

如何阻止 IE 这样做呢?如果它可以由托管页面本身(可能是 HTML 中的某些标签)以某种方式控制,而不是用户必须配置其 IE 设置,那就太好了。

It seems that a shortcut with the destination of the invoking URL is created (cached) in 'Temporary Internet Files' under the user's profile on the local desktop machine.

How can one prevent IE from doing so? It would be even great if it can be somehow controlled by the hosted page itself (may be some tags in the HTML), rather than users having to configure their IE setup.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

单身情人 2024-12-12 08:36:13

您可以通过将此 HTML 放入 标记中来阻止它缓存:

<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="-1" />

请记住,这并不总是会阻止它缓存,但通常会阻止它缓存。

如果需要,您也可以使用 PHP,方法是将其放在 PHP 页面(如果是 PHP)的最顶部,位于 开始标记之前:

<?php
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
?>

仅供参考:缓存 = 临时 Internet 文件(如果您不知道)

希望这会有所帮助。


编辑:

那么您正在使用 JSP 吗?请参阅此页面:http://www.rgagnon.com/javadetails/java-0590。 html 我希望这能解决您的问题。 :)

You could prevent it from caching by putting this HTML in your <head> tags:

<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="-1" />

Keep in mind that this wont always prevent it from caching but usually does.

You could also use PHP if you wanted, by putting this at the very top of your PHP page (if it's PHP) before the opening <html> tag:

<?php
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
?>

FYI: Cache = Temporary Internet Files (if you didn't know)

Hope this helps.


Edit:

So you are using JSP? Please see this page: http://www.rgagnon.com/javadetails/java-0590.html I hope this solves your problem. :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文