在CakePHP的页面加载中,从cookie向URL添加语言前缀



我对cakeHP很陌生。我正在使用本教程创建多语言页面:i18n多语言教程一切都很好,但在页面加载时,我需要从cookie中添加语言前缀(localhost/eng而不是localhost/),当我选择一些菜单时会出现这个前缀,但我很头疼如何在页面加载中添加前缀。谢谢你的建议。

在调用_setLanguage()后,您可以在AppController中进行重定向。类似于:

$this->_setLanguage();
if( $this->here == '/' )
    $this->redirect(array('controller' => 'your_controller', 'action' => 'your_action', 'language' => $this->Session->read('Config.language')));

相关内容

最新更新