I want to do a redirect that does a full page reload so that the cookies from my web server are refreshed when the page loads. window.location = \"/#/Next\" and
You need to stick target="_self" on your tag
There are three cases where AngularJS will perform a full page reload:
linklinklinkUsing javascript:
The $location service allows you to change only the URL; it does not allow you to reload the page. When you need to change the URL and reload the page or navigate to a different page, please use a lower level API: $window.location.href.
See: