是否可以将被动 url 附加到超链接,以便目标跟踪器将被动 url 视为引用 url?
我想在我的 pdf 书籍或网站中创建链接。当用户单击链接时,它将使用流量跟踪器访问目标站点。
我有兴趣通过操纵我的链接来利用此跟踪器,以便跟踪器将看到传入请求来自某个实际上不会发起请求的 URL。
换句话说,是否可以将被动 url 附加到指向目标 url 的超链接,以便目标跟踪器将被动 url 视为引用 url?
先感谢您。
I want to create a link in my pdf book or my site. When the user click the link, it will visit to a target site using a traffic tracker.
I am interested to take advantage of this tracker by manipulating my link so that the tracker will see the incoming request comes from a certain url which actually does not initiate the request.
In other words, is it possible to attach a passive url to a hyperlink pointing to a target url such that the passive url is regarded as a refferar url by the target tracker?
Thank you in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不可以。
您必须运行 PDF 链接到的您自己的转发器。然后,这将链接/JS 重定向到跟踪器,并将其自身作为引用者。
更容易进行跟踪的方法是向目标 URL 添加一个不执行任何操作的参数,例如
?camefrompdf=true
。No.
You would have to run a forwarder of your own that the PDF linked to. This would then link/JS-redirect to the tracker with itself as the referrer.
Easier for tracking purposes would be to add a do-nothing parameter like
?camefrompdf=true
to the target URL.