How to disable routing in angularjs?

angularjs

Solution

If you don't have a `$routeProvider` defined, there will be no routing, and therefore no hash in your url.

Problem

I have a single page application that really just has one single page. There's just the one view that has lots of javascript/ajax logic done with angularjs, but there's no routing to other views involved. Therefore I'd like to git rid of the hashbang (#/) at the end of the url. Can I somehow turn off angularjs routing completely? Btw: I know about Htm5Mode, but I want it to work in all browsers.

Original source