Html、超链接、perl、重新加载
我有一个 HTML 格式的小网站,它调用 Perl 中的某些函数。 该网站有 2 个页面。页面 A 和 B。
我的问题是当我从页面 B 转到页面 A 或反之亦然时,页面的内容不会重新加载。因此,如果我更改页面 B 中的某些内容然后转到页面 A,我仍然拥有更改之前的内容。
我如何才能始终强制重新加载,尤其是从文件读取的 perl 函数上执行?
谢谢。
i have a small site in html, that calls certain functions in perl.
The site has 2 pages. Page A and B.
My problem is when i go from paga B to A or vice-versa, the content of the page isn't reloaded. So if i change something in page B and then go to page A, i still have the content before my changes.
How can i allways force the reload and especially the execution on the perl functions that read from files?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须将页面的 Expires 标头设置为过去的内容。从您的问题中不清楚整个页面是否是从 Perl 生成的。如果没有,它是如何加载“perl 中的某些函数”的? SSI?
You have to set the Expires header for the page to something in the past. It's not clear from your question if the entire page is being generated from Perl. If not, how is it loading the "certain functions in perl"? SSI?
我认为将其添加到您的 .htaccess 文件应该可以:
Adding this to your .htaccess file should work, I think: