Rules For Certain Terms

I need a rule to redirect only certain terms.


 '<view:(about)>'=>'site/page/view/<view>',

  '<view:(faq)>'=>'site/page/view/<view>',

  '<view:(terms)>'=>'site/page/view/<view>',

I cannot use


<view:\w+>'=>'site/page/view/<view>

because i am using another rule for all terms other than this.

So is there any way to write an expression to short the 3 line of code to single one like this.


<view:(about),(faq),(terms)>'=>'site/page/view/<view>'

got it


<view:(about|faq|terms)>

This is what i was looking for…