0

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:

  1. http://myblog.com/JavaScript/encapsulation_in_js (/PostCategory/Post)
  2. http://myblog.com/archive/2010/12/encapsulation_in_js (/Archive/Year/Month/Post)

Is there any problem on doing so?

1 Answer 1

3

The trouble with this is that there is not 1 finite URL for a post - this will provide search engine ranking dilution. The ranking for the post will be split across 2 different links

The way you could handle this is that you could have a 301 redirect from 1 to 2 or from 2 to 1 and when a user hits either of the link then they will be taken to the finite URL

Sign up to request clarification or add additional context in comments.

3 Comments

Thanks for that information Paul. I thought there may some problems comes up in SEO.. I think better to eliminate the first mapping. Waiting for more comments before mark your reply as answer.
i hope u r correct duplicate urls may reduce the page rank, marked as answer.
+1 - Agree with this answer. Additional source for more information: Tim Berners-Lee "Cool URIs Don't Change"... w3.org/Provider/Style/URI

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.