如何强制在 JSP(即不是 PHP)上重新加载缓存的 css 文件?
我正在更改一个 css 文件,这将对我的网站进行巨大的更改。有没有办法强制客户端重新加载 css,以便他们接受新的更改。不幸的是,要求成千上万的人按 CTRL + F5 或清除缓存并不是一个选择。我在几篇博客上读到关于在 css 文件名上附加今天的日期作为参数会起作用。
I am altering a css file which will make drastic changes to my site. Is there a way to force the clients to reload the css so that they pick up the new changes. Unfortunately asking thousands of people to CTRL + F5 or clear their cache isn't an option. I read on a couple of blogs about appending todays date on the css filename as a parameter would work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 css 文件 url 的末尾添加一个唯一的查询字符串参数,
只需在每次更新时增加该数字即可。
编辑:
要从 web.xml 文件加载它,请使用以下命令:
并将其放在 web.xml 中
You can add a unique query string parameter on to the end of the css file url
Just increment the number each time you make an update.
EDIT:
To load it from the web.xml file use the following:
and this in web.xml