Base solution for your next web application
Open Closed

How to shut off Website front #355


User avatar
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)
  • User Avatar
    0
    hikalkan created
    Support Team

    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");
    
  • User Avatar
    0
    joe704la created

    Oh yeah of course, I should have thought that one through more haha.

    Thanks for the help.