My problem went away once I added a specific map route to RouteConfig.cs in the App_start folder
'routes.MapRoute("Buy lands", // string name
"BuyLands/Index", // string Url
new { controller = "BuyLands", Action = "Index" });
// controller name is BuyLands'