Get last page visited

前端 未结 2 1253
广开言路
广开言路 2021-01-02 13:56

I need to know if a person that comes to my website went from an another specific website. Example:

  • User A visits www.youtube.com/myvideo and clicks on a link
2条回答
  •  借酒劲吻你
    2021-01-02 14:21

    The HTTP referer header is the only way. This is the data that is given to you in PHP via $_SERVER['HTTP_REFERER'].

    Note that this header will work in most cases. Also note that it can be easily spoofed.

提交回复
热议问题