I am building a blog engine using MVC 3 and razor. In this scenario, I have given options like a user can have multiple blogs (similar to blogger.com)
Now say a user 'yasser' has the following 3 blogs
- TechStory
- GameGeek
- MeMyStory
so I want all other users to access these blogs by the following urls
- www.domainName.com/blogs/TechStory
- www.domainName.com/blogs/GameGeek
- www.domainName.com/blogs/MeMyStory
And more blogs can be added hence more such url will be acessed in future.
I know that something needs to be done with Routing, but being new to MVC dont seems to get it. Please can some one guide me on this.