Guest User

Untitled

a guest
Jun 25th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. routes.MapRoute( "DefaultLocalized",
  2. "{lang}/{controller}/{action}/{id}",
  3. new { controller = "Home",
  4. action = "Index",
  5. id = "",
  6. lang = "en" }
  7. );
  8.  
  9. routes.MapRoute( "Default",
  10. "{controller}/{action}/{id}",
  11. new { controller = "Home",
  12. action = "Index",
  13. id = "" }
  14. );
  15.  
  16. routes.MapRoute( "DefaultLocalized",
  17. "{lang}/{controller}/{action}/{id}",
  18. new { controller = "Home",
  19. action = "Index",
  20. id = "",},
  21. new { lang = "[a-z]{2}" }
  22. );
Add Comment
Please, Sign In to add comment