Quote:
Originally Posted by Mutt
RedirectMatch 301 /seo/(.*) http://www.seomoz.org/$1
what's the '^' for in yours?
|
^ = "match at the start" i.e. match if the requested page/page starts with (in this case) "/"
Depending on your server setup, the paths/pages might or might not start with the "/"
So I usually do it like this (which I missed in my first post)
RedirectMatch permanent ^/?galleries/.........
The ? means that the "/" may or may not be there.