views:

26

answers:

1

I am developing a public website on ASP.Net MVC and I am looking for open source libraries for SEO that give me following functionality.

  • Vanity URLs that have URL format like "mysite.com/<category>/<title>"
  • Sets Title of the page to something like "<site name>/<title>"
  • Sets Meta Tags in the HTML header
  • Puts H1 tag around page title in the HTML body.
+1  A: 

The default routing engine can do this without much configuration. MVC was built around having easy to configure URL routing.

Check out any MVC routing tutorial, or any MVC tutorial in general, for an explanation of how to do this.

jfar