I am trying to redirect access to a top level page to a subpage, but it doesnt seem to work.
This should be possible right?
array(
'pattern' => array('/toplevelpageone/'),
'action' => function() {
// do something here when the URL matches the pattern above
return go('/toplevelpageone/subpage');
}
)