I am trying to get the requested URL from PHP.
The URL is like this: http://example.com/#!/controller/method/var1
I want to get the /controller/method/var1 part from PHP but all I get is http://example.com/
How Grooveshark and Twitter handle this?
Twitter, Grooveshark and Facebook (before) uses Javascript to get this Friendly URL.
Maybe you can use $_SERVER[‘REQUEST_URI’] to get it with php, i am not sure.