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"); ...