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
window.location = \"/#/Next\"
After searching and giving hit and trial session I am able to solove it by first specifying url like
$window.location.href = '/#/home/stats';
then reload
$window.location.reload();