I want to do something like the following:
public class HomeController : Controller
{
// Redirect to the phpinfo.php file
public ActionResult PhpInfo()
{
return RedirectToRoutePermanent("~/Views/Home/PhpInfo.php");
}
}
This errors out saying that the route cannot be found.
Any ideas?
Thanks, Zain