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.
我正在编写一个显示服务器状态的简单网页,因此必须始终从服务器加载,而不是从缓存加载。
我该如何实现?我试过了
<head> <meta http-equiv="expires" content="0"> <title>status</title> </head>
但它仅适用于 Chrome。关于 Firefox 的任何想法?
你有没有尝试过:
<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
这在过去对我有用,可以解决 Firefox 缓存问题。
来源:http ://www.i18nguy.com/markup/metatags.html