Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a Zend Framework site that setups all routes in a file, routes.ini. The routes look like this:

routes.popular.route = popular/:type/:page/:sortOrder
routes.popular.defaults.controller = popular
routes.popular.defaults.action = index
routes.popular.defaults.type = images
routes.popular.defaults.sortOrder = alltime
routes.popular.defaults.page = 1
routes.popular.reqs.type = \w+
routes.popular.reqs.page = \d+
routes.popular.reqs.sortOrder = \w+

In bootstrap.php they are read and added to the frontController:

$config = new Zend_Config_Ini(APPLICATION_PATH . ‘/config/routes.ini’);
$router = $frontController->getRouter();
$router->addConfig($config,‘routes’);

I would like to add localization to the URL, for example www.mysite.com/en/popular, www.mysite.com/sv/popular. What is the preferred way of doing this?

share|improve this question
I should add that I want to be able to programmatically set the default language of the site (i do not want to set default language per route). – Peter Moberg Jan 18 '10 at 9:41

1 Answer

It's a good idea to have the default route localized, so I would suggest the following configuration:

routes.default.route = :lang/:controller/:action
routes.default.defaults.lang = en
routes.default.defaults.controller = default
routes.default.defaults.action = index

routes.popular.route = :lang/popular/:type/:page/:sortOrder
routes.popular.defaults.lang = en
routes.popular.defaults.controller = popular
routes.popular.defaults.action = index
routes.popular.defaults.type = images
routes.popular.defaults.sortOrder = alltime
routes.popular.defaults.page = 1
routes.popular.reqs.type = \w+
routes.popular.reqs.page = \d+
routes.popular.reqs.sortOrder = \w+
share|improve this answer
Would not this lead to that I would have to define the default language for each route? Is there a way to set a global default language? – Peter Moberg Jan 18 '10 at 9:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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