加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > PHP教程 > 正文

php – Facebook登录#_ = _后面的URL

发布时间:2020-12-13 13:31:09 所属栏目:PHP教程 来源:网络整理
导读:Facebook登入 // Get the page we were before $redirect = Session::get('loginRedirect','hirer/account'); 域名成了这个 http://domain.com/hirer/account#_=_ #=背后是什么,我怎么不显示它? 虽然这个帖子很老,但希望这可能对其他人有所帮助. 我看到有些
Facebook登入
// Get the page we were before
  $redirect = Session::get('loginRedirect','hirer/account');

域名成了这个

http://domain.com/hirer/account#_=_

#=背后是什么,我怎么不显示它?

虽然这个帖子很老,但希望这可能对其他人有所帮助.
我看到有些人通过向重定向页面添加javascript代码来解决问题,从该位置删除#_ = _.

然而,这对我来说很难看.还有另一种方法可以从后端解决这个问题.你可以让你的重定向网址包含你自己的主播#,这样它就会覆盖facebook添加的#_ = _.例如,这是我的Laravel的handleProviderCallback:

public function handleProviderCallback()
{
    $user = Socialize::with('facebook')->user();
    // add the user to your database if it doesn't exist

    // redirect the user to home page,the anchor # is 
    // to overwrite #_=_ anchor added by facebook
    return redirect('/#');
}

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读