有没有办法整合以下 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',