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
Just add $locationProvider In
$locationProvider
.config(function ($routeProvider,$locationProvider)
and then add $locationProvider.hashPrefix(''); after
$locationProvider.hashPrefix('');
.otherwise({ redirectTo: '/' });
That's it.