I\'m learning AngularJS and there\'s one thing that really annoys me.
I use $routeProvider to declare routing rules for my application:
In Router at end add html5Mode(true);
app.config(function($routeProvider,$locationProvider) {
$routeProvider.when('/home', {
templateUrl:'/html/home.html'
});
$locationProvider.html5Mode(true);
})
In html head add base tag
thanks To @plus- for detailing the above answer