How do I change the following code to produce the proper URL?
Note: The ActionLink is being produced from a different controller than DomainsController.
@Html.ActionLink("Domains", "Index", "Domains", new { id = item.Name }, null)
The goal is to see the following URL.
/Domains/ItemName
What I'm getting is:
/Domains/Index/ItemName
Any help is greatly appreciated.