I'm working on a new blog website created using ASP.NET MVC. I'm wondering what is the best way to map an url to a post. Currently I implemented in such a way an user can browse to a post by two ways through category or archive:
- http://myblog.com/JavaScript/encapsulation_in_js (/PostCategory/Post)
- http://myblog.com/archive/2010/12/encapsulation_in_js (/Archive/Year/Month/Post)
Is there any problem on doing so?