I need to check and record the referrer of visitors to my web application. How reliable is using HTTP_Referer? And are there other alternatives?
|
Using Regarding the
and
Many online privacy tools mangle this value and many browsers such as FireFox have for a long time permitted users to prevent this header being sent. So in a nutshell I wouldn't rely on it for any serious purposed. For example, securing forms so that drive-by spammers can't post values, because the For further reading see: |
||||
|
|
What @Kev said, plus the the visitor can change it. A more reliable source is the server's log file. It has the remote IP address from which you can get the hostname using |
|||||
|