vote up 1 vote down star
1

I'm at a loss... here's my route:

routes.MapRoute("LangOnly", "{language}",
    new { controller = "Home", action = "Root", language = "en" },
    new { language = @"en|ja" });

it matches www.domain.com/en, but does not match www.domain.com/ja.

huh? I've even gone so far as to comment out any other routes... kind of stuck. ;/

Update: Here's the root action on the Home controller.

[CompressFilter]
public ActionResult Root()
{
    if (!IsEnglish)
        return RedirectToAction("Index", "Biz", new { b = "" });

    return Request.IsAuthenticated ? View("LoggedInRoot") : View("Root");
}

It doesn't take a language parameter because it's being set on the base controller in OnActionExecuting, like so:

    var l = (RouteData.Values["language"] != null) ? RouteData.Values["language"].ToString() : string.Empty;

    if (string.IsNullOrEmpty(l))
        l = "en";

    if (l.Contains("en"))
    {
        IsEnglish = true;
        l = "en";
    }
    else
    {
        IsEnglish = false;
        l = "ja";
    }

    ViewData["lang"] = l.ToLower();
    Language = l.ToLower();
flag

2  
Did you try Haacked's route debugger? haacked.com/archive/2008/… – eu-ge-ne Jul 25 at 9:35
Do you have any routes above this? – eu-ge-ne Jul 25 at 9:36
I just tested it with the route debugger (thanks for link), it says "True" that it matches... wth? – Chad Jul 25 at 9:48
2  
In that case post your HomeController.Root() code, please – eu-ge-ne Jul 25 at 9:52
omg... derp. that redirect doesn't match a route. I'm dumb! lol. Thanks for the help. – Chad Jul 25 at 10:05

1 Answer

vote up 1 vote down check

Works perfectly for me with your route. Try this simple configuration:

routes.MapRoute("LangOnly", "{language}",
                new {controller = "Home", action = "Index", language = "en"},
                new {language = @"en|ja"});


routes.MapRoute(
    "Default",                                              // Route name
    "{controller}/{action}/{id}",                           // URL with parameters
    new { controller = "Home", action = "Index", id = "" }  // Parameter defaults
);

And your action:

public ActionResult Index(string language)
{
.....

(I am using "Index" as the action here, obviously change it to "Root" if that is in fact your action name.)

link|flag
found the error, redirect on the home/root action wasn't matching. ugh. thank you! – Chad Jul 25 at 10:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.