Now I have urlManager like this:
'art/list' => 'ask/index',
'art/list/sort/<sort:\w+>/' => 'ask/index',
'art/list/sort/<sort:\w+>/type/<type>' => 'ask/index',
And have link:
/art/list/sort/new/type/pro+local+buisnes+touristHow can I configuration urlManager for more parameters without so many declaring it in urlManager(For example if I have 10 or 20 params)?
typevariable and processing it later? i.e.explode("+", $type)