I have these URLs

cz/kontroler/akce

en/controller/action

Is used transatable route and works it like charm. But problem is, that when you will write

cz/controller/akce

it works as well.

In generally when you have

cz/something-in-czech
en/something-in-english

which route to someController, will be works still

cz/some
en/some

because it is really name of controller.

How solve this duplicity content issue?

link|improve this question

57% accept rate
feedback

1 Answer

up vote 0 down vote accepted

You can create a plugin that uses a preDispatch method. Before the request is executed, you can analyze the url requested and check if the requested language match the language of the params in the url (I mean controller and action). If not, you can redirect the user to the url that is in accord to the given language (basically you'll translate the controller and the action and then redirect the user to the right url).

link|improve this answer
I made it similar way. I was suprised that it doesn't controll internal during route and nowhere is write about it in documentation. When I didn't find out by accident I propably would penalize by google. – tomasr Nov 18 '11 at 1:47
@tomasr You can always use the rel="canonical" to tell Google what url you want to be the prefered one. – Aurelio De Rosa Nov 23 '11 at 0:37
feedback

Your Answer

 
or
required, but never shown

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