Skip to content

Instantly share code, notes, and snippets.

@farrelley
Created October 12, 2011 14:11
Show Gist options
  • Save farrelley/1281324 to your computer and use it in GitHub Desktop.
Save farrelley/1281324 to your computer and use it in GitHub Desktop.
Segment Route
'user' => array(
'type' => 'Zend\Mvc\Router\Http\Segment',
'options' => array(
'route' => '/user/:username',
'defaults' => array(
'controller' => 'index',
'action' => 'index',
),
'match' => array(
'username' => ':username'
)
),
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment