Como redirecionar para a página externa no núcleo .NET
public ActionResult YourAction()
{
// ...
return Redirect("http://www.example.com");
}
Dangerous Duck
public ActionResult YourAction()
{
// ...
return Redirect("http://www.example.com");
}