Guest User

Untitled

a guest
Jul 20th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. 'newsView' => array(
  2. 'type' => 'Zend_Controller_Router_Route_Regex',
  3. 'route' => 'news/(\d+)(?:-(.+))?',
  4. 'defaults' => array(
  5. 'controller' => 'news',
  6. 'action' => 'view',
  7. ),
  8. 'reqs' => array(
  9. 'id' => '\d+',
  10. 'title' => '.+'
  11. ),
  12. ),
Add Comment
Please, Sign In to add comment