Rewrite all 'site' actions

Instead of doing this:


'/'=>'site/index',

'quote'=>'site/quote',

'thanks'=>'site/thanks',

'contact'=>'site/contact',

Is there any way to create ONE rule which applies to all ‘site’ actions?

Hi yii-user,

try this


'/'=>'site/index',

'<action:\w+>'=>'site/<action>',




'/'=>'site/index',

'<action:(quote|thanks|contact)>' => 'site/<action>',