I\'m building a dashboard system in AngularJS and I\'m running into an issue with setting the url via $location.path
$location.path
In our dashboard, we have a bunch o
Below code will let you change url without redirection such as: http://localhost/#/691?foo?bar?blabla
for(var i=0;i<=1000;i++) $routeProvider.when('/'+i, {templateUrl: "tabPages/"+i+".html",reloadOnSearch: false});
But when you change to http://localhost/#/692, you will be redirected.