是禁用引荐的任何可能方式。我的意思是外部站点或分析不应捕获对我域的推荐。
示例:我的域example.com向google.com发送了流量,但google不应该知道流量来自example.com
此网站https://nullrefer.com/提供了通过隐藏引荐隐藏隐藏引荐的功能,但是我该如何为我的网站做同样的事情。
我正在使用https://www.whatismyreferer.com/进行测试。请帮助我。
答案 0 :(得分:1)
from django.conf.urls import url
from . import views
urlpatterns = [
url(r'^$', views.index, name='index'),
url(r'^(?P<topic_name>\w+)/$', views.topic, name='topic'),
url(r'^(?P<topic_name>\w+)/(?P<photo_id>[0-9]+)/$', views.detail, name='detail')
]
如果在页面上放置上述代码,则所有传出链接(用户点击)将不会发送引荐来源信息
如果您要隐藏/伪造GA引荐来源网址数据(您网站上的GA脚本),可以使用dr parameter
答案 1 :(得分:1)
HTML
<meta name="referrer" content="no-referrer">
iframe
<iframe src="https://www.whatismyreferer.com/" referrerpolicy="no-referrer"></iframe>
URL
<a href="http://example.com" rel="noreferrer">Example.com</a>
或
<a href="http://example.com" referrerpolicy="no-referrer">ReferrerPolicy Attribute</a>