0

次の Yii URL パターンを統合する方法はありますか? たとえば、パーツはオプションです。

  '<category:.+>-rezepte/mit-<ingredient:\w+>/<effort:\d+>/<difficulty:\w+>'    =>  'recipes/index',
  '<category:.+>-rezepte/mit-<ingredient:\w+>/<effort:\d+>'                     =>  'recipes/index',
  '<category:.+>-rezepte/mit-<ingredient:\w+>'                                  =>  'recipes/index',
  '<category:.+>-rezepte'                                                       =>  'recipes/index',


  'rezepte-mit-<ingredient:.+>/<category:\w+>/<effort:\d+>/<difficulty:\w+>'    =>  'recipes/index',
  'rezepte-mit-<ingredient:.+>/<category:\w+>/<effort:\d+>'                     =>  'recipes/index',
  'rezepte-mit-<ingredient:.+>/<category:\w+>'                                  =>  'recipes/index',
  'rezepte-mit-<ingredient:.+>'                                                 =>  'recipes/index',
4

1 に答える 1