The process is really simple, all you have to do is specify the area as blank in the RenderAction or the RedirectToAction functions.
<% Html.RenderAction("Action", "Controller", new { area = "" }); %>
public ActionResult redirect()
{
return RedirectToAction("Action", "Controller", new { area = "" });
return RedirectToAction("Action", "Controller", new { area = "", id = 5 });
}