I am trying to write a rule that will ignore a particular link in my .htaccess
RewriteRule ^([a-zA-Z0-9-_",'w\s@]+)$ profile?u=$1
RewriteRule ^([a-zA-Z0-9-_",'w\s@]+)/$ profile?u=$1
the code above will redirect any link like http://me.com/you
to http://me.com/profile?u=you
but i want it to ignore the word contact so that when the user types me.com/contact
the user goes to the contact page instead of going to me.com/profile?u=contact
thanks, your help will really be appreciated