After authenticating a user using Facebook OAuth, the URL comes with #= at the end, something like this: http://localhost:8000/authorize/facebook?code=aaaaaa&state=11111#=
I have to redirect the page to http://localhost:8000/. I'm using header("Location: /"), but somehow the redirected page is http://localhost:8000/#= I also tried header("Location: http://localhost:8000/"), got the same result though.
It doesn't affect how my application works, but I'd like to get rid of that #=.
Does anybody have an idea.
Thanks in advance.