我意识到这通常是一个坏主意,但我希望网站上的每个重复文件资源链接都能发出单独的HTTP请求。
让我们说有一些imgs请求文件,如下所示:
<img src="http://example.com">
<img src="http://example.com">
<img src="http://example.com">
通常情况下,浏览器只会为http://example.com发出一个请求,这对性能很有帮助并且非常有意义!
我希望浏览器提出 3个别请求,每次http://example.com出现。
顺便说一句,我链接到的页面是一个PHP重定向文件,所以也许这会开启一些可能性?如果我可以在PHP文件中添加一些标题,那就太棒了,但我不知道这是否可行(刚开始使用PHP,所以我确实很天真)。
欢迎提供任何信息,提前谢谢!
答案 0 :(得分:0)
这是3个独立的请求。
<img src="http://example.com?t=1234">
<img src="http://example.com?t=2324">
<img src="http://example.com?t=4355545">
生成字符串random :(在PHP中)
<img src="http://example.com/img.jpg?t=<?=uniqid()?>">
浏览器未缓存您的图片