I can't figure out how to do this... I want to rewrite: /top/google/competition/ to /buzz/competition/ any ideas how I can do this? (for all terms, not just this one specific term, so it will need to use regex)
RewriteEngine on RewriteRule top/google/competition/(.*?)$ buzz/competition/$1 Code (markup): or RewriteEngine on RewriteRule top/google/(.*?)$ buzz/$1 Code (markup): depending on what you wanna do.....