Worpress Redirect
-
I am migrating a WP site from one domain to another for a client. WP is installed at the root.
Typically I would simply issue a 301-redirect for the entire domain, however, in this case, the client wants the content in 2 specific subfolders to remain live on the old site and have everything else redirected. Example:
Question: what would the the htaccess code look like to pull this off?
Thanks!
-
Try this -
RewriteEngine on
RewriteCond %{REQUEST_URI}!^/subfolder-1/
RewriteCond %{REQUEST_URI}!^/subfolder-2/
RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L] -
That looks like it should do the trick.
Thank you!