Hello:
Assume I have two sites:
www.name.com and
www.name.org.
At times, I would like to redirect traffic from one to the other. The following directive in .htaccess does the job:
RedirectMatch permanent /(.+)
http://www.name.org/$1
My question is, Is it possible to do selective redirection? More accurately, Is it possible to redirect the whole of
www.name.com, except for one subdirectory, say
www.name.com/dir?
Many thanks,
Alexander