I have a page that serves a link like this:
example.com/#/media/ArCGasGRs
I want to get the url "example.com/#/media/ArCGasGRs" complete in PHP.
I try:
$SERVER["REQUEST_URI"]
It's return me only "/" .All the string after "#" is missing and that is that i want.
There is a way to get that kind of url?
Thank you