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.

I've used Yii's urlManager to rewrite my url from mypage.com/controller/view to mypage.com/view. But I have more than one Controller and would like to apply this on all of them. Can this be done?

My current urlManager:

'urlManager'=>array(
      'urlFormat'=>'path',
      'showScriptName'=>false,
      'rules'=>array(
      '<action:\w+>' => 'site/<action>',
      ),
 ),
share|improve this question
You need a rule for each controller I believe. – Jack Apr 19 '12 at 23:02
I've tried the same rule as I have for SiteController (shown in my urlManager above) for all controllers but it doesn't work. – ifsession Apr 19 '12 at 23:04

1 Answer

up vote 5 down vote accepted

First way:

'<action:(login|logout|about)>' => 'site/<action>',
'<action:(view|edit)>' => 'product/<action>',

Second way to implement this feature is to use Using Custom URL Rule Classes

share|improve this answer
1  
Works great, thanks! – ifsession Apr 20 '12 at 14:16

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.