In this moment I have the next MapRoute
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = UrlParameter.Optional },// Parameter defaults
new { controller = @"[^\.]*" } // Parameter constraints
);
My defined constraint is controller = @"[^.]*"
I need a constraint to avoid also the controllers with the name "Images".
How can I do this??