PHP位置标头忽略哈希 [英] PHP Location Header Ignore Hash

查看:135
本文介绍了PHP位置标头忽略哈希的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述


可能重复:

网址片段和302重定向

我正在整合Facebook登录进入我的网站当Facebook使用代码查询参数重定向到我的网站时,结尾处有一个哈希值 http://myurl.com/code=xxx#_=_
当我从我的网站重定向到另一个网址时:

I am integrating Facebook login into my site. When Facebook redirects to my site with the code query parameter, there is a hash at the end http://myurl.com/code=xxx#_=_ When I then redirect from this url to another url at my site:

header('Location: http://myurl.com/home');

它保留哈希标签,最终为$ code> http:// myurl。 com / home#_ = _

It keeps the hash tag and ends up as http://myurl.com/home#_=_

有没有一种方法来重定向没有散列,或者如果有人熟悉Facebook一种方式来获得它首先要停止添加哈希吗?

Is there a way to redirect without the hash or if anyone is familiar with Facebook a way to get it to stop adding the hash in the first place?

推荐答案

似乎JavaScript是排除哈希的唯一方法,因为哈希是从未以任何方式发送到服务器。所以我在空白页面添加了一个脚本:

It seems JavaScript is the only way to remove a hash since the hash is never sent to the server in any way. So I added a script to a blank page:

window.location.hash = '';  window.location.href = "http://myurl.com"

这是现在的答案,但我会接受更好的。

This is the answer for now, but I will accept better ones.

这篇关于PHP位置标头忽略哈希的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆