Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7398409
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T03:51:58+00:00 2026-05-29T03:51:58+00:00

I have a website with urls like this : www.mysite.com/controller/action/id I need to create

  • 0

I have a website with urls like this :
http://www.mysite.com/controller/action/id

I need to create urls for others languages (english), so I have used ALEX ADAMYAN implementation of the MultiCultureMvcRouteHandler. So now I have urls like this :

http://www.mysite.com/en/controller/action/id
http://www.mysite.com/fr/controller/action/id

but I need to keep my old urls has default one, ie to have :

http://www.mysite.com/en/controller/action/id
http://www.mysite.com/controller/action/id

So I’m wondering how I can modify the routes, in his implementation, alex loops the routes and add the en/fr parameter to all routes so it overwrites former routes, then former urls are dropped, what I want to avoid.
If I duplicate all the routes to keep one with fr/en and one without it doesn’t works, may be this is because the order is lost in the route collection ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T03:51:59+00:00Added an answer on May 29, 2026 at 3:51 am

    I solved this problem looping through all my languages:

        public static List<Language> Languages;
        public static void RegisterRoutes(RouteCollection routes)
        {
            routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
            LanguageRepository langRepo = new LanguageRepository();
            Languages = langRepo.GetAllLanguages();
    
            foreach (Language language in Languages)
            {
                routes.MapRoute(
                "Localization_" + language.LanguageAbbreviation,
                language.LanguageAbbreviation + "/{controller}/{action}/{id}",
                new { lang = language.LanguageAbbreviation, controller = "Home", action = "Index", id = UrlParameter.Optional });
            }
            routes.MapRoute(
                "Default", 
                "{controller}/{action}/{id}", 
                new {lang = "en", controller = "Home", action = "Index", id = UrlParameter.Optional });
        }
    

    Where langabbreviation likes “en” or “ru”.

    The last route is for “default” “withoutlanguage” url like “www.site.com/controller/action” and you need to set up the default lang abbr for it (“en” in my case).

    Hope it will help.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a website that has images with urls like this: http://mysite.com/image1.jpg My server
in my website I have some pages structured in this way: www.mysite.com/x/y.php?query=z I wrote
I have a URL scheme like this: website.com/keywords and I also have specific controllers:
I'm working on a website using friendly URLs. We want to have www.website.com/johndoe go
I use Codeigniter's _remap function to remap all urls to www.website.com. This works for
I'm wondering how urls like these are generated: http://www.example.com/Xj7hF This is a practice I
I have a list of URLs such as, http://www.mywebsite.com/page.php?genus=A_GENUS&species=A_SPECIES&id=12345 . I would like to
I would like to make a website always have www in the address, and
I have a weird issue. I have a dynamic website www.lamanscanada.com it appears fine
I have a website with friendly urls. I want all url´s that end with

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.