I have an url like (result of authenticating via facebook with hybridauth):
http://localhost/work/auth/validate.php?service=Facebook#_=_
Within it I am trying to redirect to:
header("location:../user/".$_SESSION['user']['profile_url_name']);
Where $_SESSION['user']['profile_url_name'] = 'Test-User'
However when the redirection occurs, it appears as:
http://localhost/work/user/Test-User#_=_
I don't know why or how the #_=_
appears in the redirection, but I just want to get rid of it. Any solutions?