Currently working on my first Single Page Application in AngularJS, and I've run into a roadblock with the routing.
I'm attempting to enable HTML 5 like so:
.config(function ($routeProvider, $locationProvider) {
$locationProvider.html5Mode(true);
$routeProvider.otherwise({
templateUrl: "/angular/components/booking-system/booking-system-template.html"
});
})
However, I've heard that some server configuration (IIS) needs to be done. Can someone provide me with clear instructions on what steps need to be taken? The information on stackoverflow is somewhat confusing.
Thank you, M