2015-10-23 55 views
2

更改URL我想改變這個網址:在Yii2

http://www.themusicartists.com/index.php/Artist/Reviews-11

分爲:

http://www.themusicartists.com/index.php/Reviews-11

我只想改變這個URL

'urlManager' => [ 
     'enablePrettyUrl' => true, 
     'showScriptName' => true, 
     'rules' => [ 
      '<id>' => 'posts/view', 
      'Artist/<id>' => 'music-categories/view', 
     ] 
    ], 
+0

添加新的規則對這個「藝術家/評論-11」 =>「點評-11」, –

+0

謝謝@NuriddinRashidov。 –

回答

3

評論看起來是一個直接的地圖實例。像about更改爲about-us這種事情。如果你想這是動態的,我覺得它應該是(未經測試):

'urlManager' => [ 
    'enablePrettyUrl' => true, 
    'showScriptName' => true, 
    'rules' => [ 
     '<id>' => 'posts/view', 
     'Reviews-<id>' => 'music-categories/view', 
    ] 
],