How do I bypass the routing provided by angular? For instance, in my angular routing settings, I have set $routeProvider.otherwise({redirectTo : '/someurl'});.
I want a certain request (generated by the user clicking a certain link in the HTML) to go to my webserver and not redirected to /someurl by Angular's routing. How do I do this?