I config a router
'users/user(/fields=:fname,:lname,:age)?' => 'users/user/$1/$2/$3',
used: /users/user/fields=John,Smith,33 (fname = John, lname = Smith, age = 33)
I want config like
users/user?fields=John,Smith,33
but I can't use "?" in a router.