Create multilingual urls for your site
Update your config:
'components'=>array( #... # More setting http://www.yiiframework.com/doc/guide/1.1/en/topics.url 'urlManager'=>array( 'class'=>'ext.yii-multilanguage.MLUrlManager', 'urlFormat'=>'path', 'languages'=>array( #... 'de', 'el', 'en', 'es', 'fr', 'hu', 'ja', 'nl', 'pl', 'pt', 'ro', 'ru', 'uk', #... ), 'rules'=>array( # ... more user rules '<controller:\w+>/<id:\d+>'=>'<controller>/view', '<controller:\w+>/<action:\w+>/<id:\d+>'=>'<controller>/<action>', '<controller:\w+>/<action:\w+>'=>'<controller>/<action>', '<module:\w+>/<controller:\w+>/<id:\d+>/<action:\w+>'=>'<module>/<controller>/<action>', '<module:\w+>/<controller:\w+>/<id:\d+>'=>'<module>/<controller>/view', '<module:\w+>/<controller:\w+>/<action:\w+>'=>'<module>/<controller>/<action>', '<module:\w+>/<controller:\w+>'=>'<module>/<controller>', '<module:\w+>'=>'<module>', # ... ), ), #... ),
Total 2 comments
I'm looking for something like this domain.com/de/controller/action domain.com/en/controller/action
Can I realize it with this URL Manager ?
Thanks !
... and by the way: Could you please also have a look at: http://www.yiiframework.com/extension/yii-user#c8061 which is mainly referring to this discussion.
Thanks!
Leave a comment
Please login to leave your comment.