I've be trying to do some redirects from a blog, to another. The paths would be like this:
From: domain/blog/posts
to: diferentDomain/blog/posts
So i came with this solution:
^/blog/(.*)
The thing is, i don't want a redirect when the origin URL has this path:
domain/blog/"wp-admin"
So i wrote something like this:
^/blog/(?!wp-admin)(.*)
But is not working at all... Does somebody knows what is happening?