2👍
✅
Redirect within the angularJS app:
scope.$apply(function() {
$location.path("/route");
});
Redirect outside the angularJS app:
window.location.replace('http://google.ca/');
Source:stackexchange.com