You will also need to know the basics about regular expressions if you plan to use mod_rewrite. This site is one of the best regular expression resources out there.
- http://www.regular-expressions.info/tutorial.html
@dhruvjha
We don't do that. We are here to help you create code, not to do it for you.
Post what you have tried, and I will help you make it work.
I'll help you get started, though. This regular expression will match either of the URLs you want to match.
Expand|Select|Wrap|Line Numbers
^about-us(\.php)?$
With that, and a basic understanding of how mod_rewrite works (which you can get by reading the tutorial I posted), you should have no problem creating the rewrite rule you need.