Possible Duplicate:
Add a trailing slash at the end of each url?
I need to append a forward slash on the end of the ActionLink. How would I do that? This is for SEO purposes.
@Html.ActionLink("About Us","Index","About")
From this:
http://www.somesite.com/About
To this:
http://www.somesite.com/About/
You can also use the URL rewrite module to enforce your SEO requirements throughout the site, without the need to write specific route functionality. This is managed from your web.config…