HTML 框架上的 HTTP 引用
假设我有一个从 one.com 到 Two.com/A.html 的链接。 A.html 看起来像这样
<FRAMESET cols="100%">
<FRAME src="B.html">
</FRAMESET>
A.html 上的 HTTP Referer 是“one.com”,但是 B.html 上的 HTTP Referer 是什么?这个浏览器有特定的吗?
Say that I have a link from one.com to two.com/A.html. A.html looks like this
<FRAMESET cols="100%">
<FRAME src="B.html">
</FRAMESET>
The HTTP Referer on A.html is "one.com", but what will the HTTP referer be on B.html? Is this browser specific?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它将是two.com/A.html,来自容器的链接。它不是特定于浏览器的,除非浏览器被告知通过配置发送不同的引用者
it'll be two.com/A.html, the link from the container. It's not browser specific, unless the browser is told to send a different referer via configuration
它应该是two.com/a.html(即具有框架集的页面)。
请记住,这些引荐来源网址是由浏览器设置的,因此可以伪造。
It should be two.com/a.html (i.e. the page that has the frameset on it).
Remember that these referrers are set by the browser and therefore can be faked.