Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Currently one of my routes looks like this

new Zend_Controller_Router_Route(
  'aviso/:url_id/:slug',
  array(
    'module' => 'postulante',
    'controller' => 'aviso',
    'action' => 'ver',
    'url_id' => ':url_id',
    'slug'=> ':slug'
  )
)

Now, I want to change the url part and use 'aviso/:slug-:url_id' instead of 'aviso/:url_id/:slug', how can i achieve this.

share|improve this question
Can you explain better what do you want to do with an example? – Aurelio De Rosa Oct 11 '11 at 21:16

1 Answer

up vote 4 down vote accepted

You'll want to use Zend_Controller_Router_Route_Regex. If you read through that documentation you'll have enough info to construct the route you want. The very last example they provide is very close to what you need.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.