I have an url as below
http://www.something.com/sometest/test/#registration
some logic is written based on #registration for IE.
Now as I am using angular js and it is redirecting as follows which is breaking the logic.
http://www.something.com/sometest/test/#/registration
I thought of html5 mode
but it is creating other issues like links in my page are not working only the url is getting updated(which is expected when we use html5mode I guess). So, I dont want to use html5mode. I just want to stop that #
thing from redirecting to /#/
.
please let me know how to disable this redirecting
Note: I am not using routing and I don't need it. I dont want to use html5mode as well. This is and existing implementation and I need to use it in angular js app to open a popup or something.
$location
service to the controller. – Susheel Singh 15 hours ago