here is question. I have an localized asp.net mvc website. Localization done by next steps: 1. for each route I automatically add an {culture} url segment with default value to "ru".
I want my urls to be with culture only for foreign cultures. For example:
http://mysite.com/ua/contacts - ukrainian
http://mysite.com/fr/contacts - francis
http://mysite.com/contacts - russian
I can't arrive this, because @Url.Action method always returns url with culture, even then it is a default culture. Help me please!