I am new to angularJs. I have a issue when I am working on an app with angularjs and ruby on rails at the backend. Whenever i have a '?' in the url it gets converted into %3f in the url and hence giving a wrong output.
The question I have is that can i somehow bypass the question mark in the url so that I can get the proper Url.
For eg:-
The following url $location.path("www.test.com/program/who-is-this?") gets converted into below url
"www.test.com/program/who-is-this%3f"
I want a question mark instead of %3f in the url. I have gone through some of the questions on the forum but it is not helping me much. Please help