博文

目前显示的是标签为“rewriteURL”的博文

ReWriteURL and Redirect in net core 2.1

Container: public class HomeController : Controller     {         public IActionResult Index()         {           //1 and 2 are without changing the URL in broswer           //1. HomeController aController = new HomeController();                 return aController.About();           //2.//"PageNotFound" must be in Shared view folder.               return View("PageNotFound").          //3 other changing the URL                 return View("Calls");            ...