Answer the question
In order to leave comments, you need to log in
Is it possible to trace the source of the transition to the site?
Let's imagine that on the site moskva.ru at the end of the article there is a clickable link to the site rostov.com. Will the owner of the site rostov.com see where the transition was made from? If yes, how is the information transmitted to the owner of the site rostov.com? Under what circumstances will such information not be shared? Is the traffic source transmitted from private resources?
Answer the question
In order to leave comments, you need to log in
HTTP referrer .
PS He will see if he keeps track of it in his code. Those. the header is passed (not always, of course), but something in the code must be implemented on rostov.com that will log and / or process referers. This is optional. If you need it only for statistics and analytics, then a regular counter from Yandex.Metrika can handle it. Or Google Analytics.
In the code (let's say the server part is implemented in PHP), then the referer can be processed like this:
if(isset($_SERVER['HTTP_REFERER'])) {
echo $_SERVER['HTTP_REFERER'];
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question