1

我正在尝试在 Cakephp 中创建一个可以有任何前缀的路由。但我也希望管理员路由正常工作。在这种情况下,前缀将是一种语言。Route 必须使用 action: index 链接到名为 front 的控制器。

网址应如下所示 www.domain.com/eng/the/rest/of/the/url_12 或 www.domain.com/nl/the/rest/of/the/url_12

这就是我所拥有的,这意味着我必须为每种语言创建一条路线,这不是我想要的。

Router::connect('/', array('controller' => 'front', 'action' => 'index'));
Router::connect('/admin', array('controller' => 'cms', 'action' => 'index', 'admin' => true));
Router::connect('/nl/*', array('controller' => 'front', 'action' => 'index'));
4

1 回答 1

1

你可以使用这个:

Router::connect('/:i10n/:controller', array('action' => 'index'), array('i10n' => '[a-z]{2}'));
Router::connect('/:i10n/:controller/:action/*', array(), array('i10n' => '[a-z]{2}'));
于 2012-05-09T04:17:07.140 回答