Consider the following setup:
app.config(['$routeProvider', function($routeProvider) {
$routeProvider
.when('/personal-area/', {...})
.otherwise({'redirectTo': '/personal-area/'})
]);
Whenever I try to access /personal-area/
in the browser, Angular redirects me to /personal-area/#/personal-area/
.
Is there a way to ensure that paths are recognized correctly?