I need a little help putting together a 301 redirect via .htaccess. Essentially I want to redirect all files and folders into the directory /pages/ so that each respective URL simply redirects to a file of the same name but with /pages/ at the beginning. I believe I can do this by:
RedirectMatch 301 /(.*) /pages/$1
However, the only caveat is that certain URLs such as the root homepage and one directory (/forum/) need to remain exactly where they are. Any idea how I can do this?