How can i search with: regular expresion mod_rewrite - any word which is at the begining of the row except the word "search" ^([A-Za-z0-9]+) - this is the regular expresion for any word from the begining, but i don't know how to exclude the word "search" I tryed : ^([A-Za-z0-9]+[^s][^e][^a][^r][^c][^h]) but is not good Thanks!
Your attempt there matches any alphanumeric string at least 7 characters long where the last 6 are not s e a r c and h respectively. Look up "negative lookahead" - it does exactly what you want. ^(?!search)([a-zA-Z0-9]+)