How To Prevent Capturing Referral - Disable Referral or Hide Referral [duplicate]
up vote
0
down vote
favorite
This question already has an answer here:
Stop link from sending referrer to destination
7 answers
Is any possible way to disable referral. I mean external site or analytic should not capture a referral of my domain.
Example : My domain example.com sending a traffic to google.com but google should not know traffic is coming from example.com
This site https://nullrefer.com/ provide a feature to Hide referral by blanking the referral but how can i do same for my website.
I am using https://www.whatismyreferer.com/ for testing. Please help me.
javascript php jquery html css
marked as duplicate by rlemon, Cerbrus
StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Nov 22 at 14:38
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
up vote
0
down vote
favorite
This question already has an answer here:
Stop link from sending referrer to destination
7 answers
Is any possible way to disable referral. I mean external site or analytic should not capture a referral of my domain.
Example : My domain example.com sending a traffic to google.com but google should not know traffic is coming from example.com
This site https://nullrefer.com/ provide a feature to Hide referral by blanking the referral but how can i do same for my website.
I am using https://www.whatismyreferer.com/ for testing. Please help me.
javascript php jquery html css
marked as duplicate by rlemon, Cerbrus
StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Nov 22 at 14:38
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
This question already has an answer here:
Stop link from sending referrer to destination
7 answers
Is any possible way to disable referral. I mean external site or analytic should not capture a referral of my domain.
Example : My domain example.com sending a traffic to google.com but google should not know traffic is coming from example.com
This site https://nullrefer.com/ provide a feature to Hide referral by blanking the referral but how can i do same for my website.
I am using https://www.whatismyreferer.com/ for testing. Please help me.
javascript php jquery html css
This question already has an answer here:
Stop link from sending referrer to destination
7 answers
Is any possible way to disable referral. I mean external site or analytic should not capture a referral of my domain.
Example : My domain example.com sending a traffic to google.com but google should not know traffic is coming from example.com
This site https://nullrefer.com/ provide a feature to Hide referral by blanking the referral but how can i do same for my website.
I am using https://www.whatismyreferer.com/ for testing. Please help me.
This question already has an answer here:
Stop link from sending referrer to destination
7 answers
javascript php jquery html css
javascript php jquery html css
asked Nov 22 at 11:47
Jyoti Sandhiya
102
102
marked as duplicate by rlemon, Cerbrus
StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Nov 22 at 14:38
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by rlemon, Cerbrus
StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Nov 22 at 14:38
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
0
down vote
accepted
<meta name="referrer" content="no-referrer"/>
If you put above code on your page all outgoing links (user clicks) will not send referrer information
Documentation
If you want to hide/fake your GA referrer data (GA script on your site) you can use dr parameter
Is this small code also stop referrer detecting in Google Analytic or Voluum.com ?
– Jyoti Sandhiya
Nov 22 at 12:13
Can you add some explanation to that code?
– Nico Haase
Nov 22 at 12:21
Added some information, and link to documentation. As for GA, Google will not see referrer from outgoing clicks from your page ending on other pages. If you put GA code on your site, and someone will come from another site to you with referrer set, GA will see and use it.
– Khazul
Nov 22 at 12:28
@Khazul is this also works for to hide or remove referrer from Iframe?
– Jyoti Sandhiya
Nov 22 at 12:58
Iframes works wrongly with this - and you need to set it independently on them, as in given by you answer.
– Khazul
Nov 22 at 13:19
add a comment |
up vote
0
down vote
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>
or
<a href="http://example.com" referrerpolicy="no-referrer">ReferrerPolicy Attribute</a>
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
<meta name="referrer" content="no-referrer"/>
If you put above code on your page all outgoing links (user clicks) will not send referrer information
Documentation
If you want to hide/fake your GA referrer data (GA script on your site) you can use dr parameter
Is this small code also stop referrer detecting in Google Analytic or Voluum.com ?
– Jyoti Sandhiya
Nov 22 at 12:13
Can you add some explanation to that code?
– Nico Haase
Nov 22 at 12:21
Added some information, and link to documentation. As for GA, Google will not see referrer from outgoing clicks from your page ending on other pages. If you put GA code on your site, and someone will come from another site to you with referrer set, GA will see and use it.
– Khazul
Nov 22 at 12:28
@Khazul is this also works for to hide or remove referrer from Iframe?
– Jyoti Sandhiya
Nov 22 at 12:58
Iframes works wrongly with this - and you need to set it independently on them, as in given by you answer.
– Khazul
Nov 22 at 13:19
add a comment |
up vote
0
down vote
accepted
<meta name="referrer" content="no-referrer"/>
If you put above code on your page all outgoing links (user clicks) will not send referrer information
Documentation
If you want to hide/fake your GA referrer data (GA script on your site) you can use dr parameter
Is this small code also stop referrer detecting in Google Analytic or Voluum.com ?
– Jyoti Sandhiya
Nov 22 at 12:13
Can you add some explanation to that code?
– Nico Haase
Nov 22 at 12:21
Added some information, and link to documentation. As for GA, Google will not see referrer from outgoing clicks from your page ending on other pages. If you put GA code on your site, and someone will come from another site to you with referrer set, GA will see and use it.
– Khazul
Nov 22 at 12:28
@Khazul is this also works for to hide or remove referrer from Iframe?
– Jyoti Sandhiya
Nov 22 at 12:58
Iframes works wrongly with this - and you need to set it independently on them, as in given by you answer.
– Khazul
Nov 22 at 13:19
add a comment |
up vote
0
down vote
accepted
up vote
0
down vote
accepted
<meta name="referrer" content="no-referrer"/>
If you put above code on your page all outgoing links (user clicks) will not send referrer information
Documentation
If you want to hide/fake your GA referrer data (GA script on your site) you can use dr parameter
<meta name="referrer" content="no-referrer"/>
If you put above code on your page all outgoing links (user clicks) will not send referrer information
Documentation
If you want to hide/fake your GA referrer data (GA script on your site) you can use dr parameter
edited Nov 22 at 12:39
answered Nov 22 at 11:57
Khazul
1566
1566
Is this small code also stop referrer detecting in Google Analytic or Voluum.com ?
– Jyoti Sandhiya
Nov 22 at 12:13
Can you add some explanation to that code?
– Nico Haase
Nov 22 at 12:21
Added some information, and link to documentation. As for GA, Google will not see referrer from outgoing clicks from your page ending on other pages. If you put GA code on your site, and someone will come from another site to you with referrer set, GA will see and use it.
– Khazul
Nov 22 at 12:28
@Khazul is this also works for to hide or remove referrer from Iframe?
– Jyoti Sandhiya
Nov 22 at 12:58
Iframes works wrongly with this - and you need to set it independently on them, as in given by you answer.
– Khazul
Nov 22 at 13:19
add a comment |
Is this small code also stop referrer detecting in Google Analytic or Voluum.com ?
– Jyoti Sandhiya
Nov 22 at 12:13
Can you add some explanation to that code?
– Nico Haase
Nov 22 at 12:21
Added some information, and link to documentation. As for GA, Google will not see referrer from outgoing clicks from your page ending on other pages. If you put GA code on your site, and someone will come from another site to you with referrer set, GA will see and use it.
– Khazul
Nov 22 at 12:28
@Khazul is this also works for to hide or remove referrer from Iframe?
– Jyoti Sandhiya
Nov 22 at 12:58
Iframes works wrongly with this - and you need to set it independently on them, as in given by you answer.
– Khazul
Nov 22 at 13:19
Is this small code also stop referrer detecting in Google Analytic or Voluum.com ?
– Jyoti Sandhiya
Nov 22 at 12:13
Is this small code also stop referrer detecting in Google Analytic or Voluum.com ?
– Jyoti Sandhiya
Nov 22 at 12:13
Can you add some explanation to that code?
– Nico Haase
Nov 22 at 12:21
Can you add some explanation to that code?
– Nico Haase
Nov 22 at 12:21
Added some information, and link to documentation. As for GA, Google will not see referrer from outgoing clicks from your page ending on other pages. If you put GA code on your site, and someone will come from another site to you with referrer set, GA will see and use it.
– Khazul
Nov 22 at 12:28
Added some information, and link to documentation. As for GA, Google will not see referrer from outgoing clicks from your page ending on other pages. If you put GA code on your site, and someone will come from another site to you with referrer set, GA will see and use it.
– Khazul
Nov 22 at 12:28
@Khazul is this also works for to hide or remove referrer from Iframe?
– Jyoti Sandhiya
Nov 22 at 12:58
@Khazul is this also works for to hide or remove referrer from Iframe?
– Jyoti Sandhiya
Nov 22 at 12:58
Iframes works wrongly with this - and you need to set it independently on them, as in given by you answer.
– Khazul
Nov 22 at 13:19
Iframes works wrongly with this - and you need to set it independently on them, as in given by you answer.
– Khazul
Nov 22 at 13:19
add a comment |
up vote
0
down vote
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>
or
<a href="http://example.com" referrerpolicy="no-referrer">ReferrerPolicy Attribute</a>
add a comment |
up vote
0
down vote
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>
or
<a href="http://example.com" referrerpolicy="no-referrer">ReferrerPolicy Attribute</a>
add a comment |
up vote
0
down vote
up vote
0
down vote
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>
or
<a href="http://example.com" referrerpolicy="no-referrer">ReferrerPolicy Attribute</a>
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>
or
<a href="http://example.com" referrerpolicy="no-referrer">ReferrerPolicy Attribute</a>
answered Nov 22 at 12:57
Jyoti Sandhiya
102
102
add a comment |
add a comment |