Custom Url Routing

Hi,

I’m planning to build a cms on top of yii/zend framework, but I have no experience with yii. I’m wondering whether it is easier to work with yii url routing or not.

Because all of our modules going to have a consistent url pattern, which is mainly id based

For example:

/54/forum/ (module:forum, controller:index, action:index)

/96/how-to-do-it/ (module:forum, controller:topic, action:index)

/544/news/ (module:news, controller:index, action:index)

/677/how-to-do-it/ (module:news, controller:topic, action:index)

We use the numeric id to route the request to proper module and controller. So my question is, is it easier to implement with yii?

Thanks!

first i think you need to read this

Thanks a lot for the link, very helpful…