0
joe704la created
I would like my app to go to the login screen immediately and not go to the front website. Is this possible? My app will only have a admin Angular side.
2 Answer(s)
-
0
Sure, just go to HomeController's Index action and redirect to your application. If your app is SPA, then it should be like:
return RedirectToAction("Index","Application");
-
0
Oh yeah of course, I should have thought that one through more haha.
Thanks for the help.