PHP跨域获取上一页URL问题

WBOY
Release: 2016-06-06 20:36:36
Original
913 people have browsed it

比如从 www.baidu.com 点击当前页面跳转到 www.163.com的时候$_SERVER['HTTP_REFERER']这个变量一旦跨域了,就变成了当前页面,我想要拿到上一页URL,如何破?

回复内容:

比如从 www.baidu.com 点击当前页面跳转到 www.163.com的时候$_SERVER['HTTP_REFERER']这个变量一旦跨域了,就变成了当前页面,我想要拿到上一页URL,如何破?

如果从SSL认证网站链接跳到当前你的页面的话,$_SERVER['HTTP_REFERER']会失效,
但是非SSL不同域名之间跳转$_SERVER['HTTP_REFERER']取到上一页的URL应该没有问题。

$_SERVER['HTTP_REFERER']取不到值的几种可能原因

  • 在浏览器内直接敲URL
  • windows桌面上的超链接图标
  • 浏览器内书签
  • Word,Excel等内容中的链接
  • outlook之类的邮件管理软件内的链接
  • SSL认证网站跳入
  • <meta http-equiv="refresh" content="5; url=http://example.com/"> meta页面设置自动跳转时,在example.com将取不到REFERER URL

欢迎补充。

在www.163.com页面print_r($_SERVER) 看看有没有你要的

$_SERVER['HTTP_REFERER'] #链接到当前页面的前一页面的 URL 地址

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template