简体   繁体   中英

How can I enable clean urls with multiple language in Yii2

How can I enable clean-urls with multiple language in Yii2.

in - English
https://www.myfolder.com/en/restaurant/Bez_Gwiazdek-Warsaw

in - French
https://www.myfolder.com/fr/restaurant/Bez_Gwiazdek-Varsovie

in - Polish
https://www.myfolder.com/pl/Restauracja/Bez_Gwiazdek-Warszawa 

please have a look at this repository https://github.com/codemix/yii2-localeurls#example-language-selection-widget

you need to update your urlManager configuration, something like this

[
    'language' => 'en',
    'components' => [
        'urlManager' => [
            'class' => 'codemix\localeurls\UrlManager',
            'languages' => ['en','pl','fr'],
            'enablePrettyUrl' => true,
            'showScriptName' => false,
            'rules' => [
                '<controller:\w+>/<action:\w+>/<slug:[A-Za-z0-9 -_.]+>' => '<controller>/<action>',
            ],
        ],
...
]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM