I need your help to understand how can I have an URL in french and one in english that redirect to the same controller in MVC4?
In other words, I have a controller Speciality which have a controller MoreOption
public ActionResult MoreOption()
{
...
}
So we can access this controller via http://{domainname}/Speciality/MoreOption.Now I need to access this controller in french language http://{domainname}/nos-specialites/options-supplementaires. I do not need to write an other controller class because it's the same code I use to show that page.