I am developing asp.net mvc project with angularjs routing. Indroducing some routing errors while reloading page. In my application,
.when('/home', {
templateUrl: '/Selection_Routing/Selection_Product/Home.html',
controller: 'HomeController'
})
This page works fine if I reload page. But, If I reload the next page it shows Server Error in '/' Application. HTTP: 404 error.
.when('/computer', {
templateUrl: '/Selection_Routing/Selection_Product/Laptop.html',
controller: 'LaptopController'
})
I appreciate for the answer.