Hi,

Since I did not find anything about locale based handler mapping from this forum, I decided to make a new thread about my problem, which is following:

I want to create a handler mapping which would manipulate the url address visible on the browser's address bar based on to the user's locale. However, both urls would be handled by the same controller.

Example:

User's locale is 'fi', the used action would be: fi.action

User's locale is 'en', the used action would be: en.action

However, both requests would be handled by XController class. Of course this could be solved by implementing a custom handler mapping, but I would like to do that only as a last resource.

Any help is highly appreciated.