Może taki układ powie ci więcej:
'showuser' =>
array (
'app' => 'members',
'allowRedirect' => 1,
'out' =>
array (
0 => '#showuser=(.+?)((?:&|&)f=(.+?))?(&|$)#i',
1 => 'user/$1-#{__title__}/$2$4',
),
'in' =>
array (
'regex' => '#/user/(\\d+?)-#i',
'matches' =>
array (
0 =>
array (
0 => 'showuser',
1 => '$1',
),
),
),
),
Albo również z ID:
'members_status_single' =>
array (
'app' => 'members',
'allowRedirect' => 0,
'out' =>
array (
0 => '#app=members(?:&|&)module=profile(?:&|&)section=status(?:&|&)type=single(?:&|&)status_id=(\\d+?)(&|$)#i',
1 => 'statuses/id/$1/$2',
),
'in' =>
array (
'regex' => '#/statuses/id/(\\d+?)/#i',
'matches' =>
array (
0 =>
array (
0 => 'app',
1 => 'members',
),
1 =>
array (
0 => 'section',
1 => 'status',
),
2 =>
array (
0 => 'module',
1 => 'profile',
),
3 =>
array (
0 => 'type',
1 => 'single',
),
4 =>
array (
0 => 'status_id',
1 => '$1',
),
),
),
),