I have an Multiculture MVC2 website. Actually my home page can be accessed with the following paths:
http://mydomain.com
http://mydomain.com/
http://mydomain.com/en
http://mydomain.com/en/
http://mydomain.com/en/home
http://mydomain.com/en/home/
What I want is that all the above paths make a 301 redirect to the following:
http://mydomain.com/en
so that I don't have to share pagerank between different urls.
Note that the en
string is dynamic and sets the culture for the website.
I'm new in Asp.Net MVC, someone could post some code to do that? Thanks