Is it possible to remove the # symbol from angular.js URLs?
I still want to be able to use the browser\'s back button, etc, when I change the view and will update th
Be sure to check browser support for the html5 history API:
if(window.history && window.history.pushState){ $locationProvider.html5Mode(true); }