I am on the home page:
http://localhost/
http://localhost/Home (yeah, this one too, though I don't like it)
I have a foreach loop, looping through my categories. I want the Html.ActionLink to point to:
http://localhost/site/{category-name}
I currently have:
Html.ActionLink(cat.cat_name, "site", "", new { id = cat.cat_name}, null)
This points to:
http://localhost/Home/site/{cat_name}
I want to get rid of the Home.
EDIT
No matter what page I am on, I want the link to point to:
http://localhost/site/{category-name}