0

How do I 301 redirect all pages to another domain except for two sub-directories?

Similar question.

Steve
  • 2,066
  • 13
  • 60
  • 115

1 Answers1

0

You can use this redirect rule in site root .htaccess:

RewriteEngine On

RewriteRule !^(?:dir1|dir2)($|/) http://example.com%{REQUEST_URI} [L,R=301,NC,NE]

!^(?:dir1|dir2) is negation match that excludes dir1 and dir2 from this redirection.

anubhava
  • 761,203
  • 64
  • 569
  • 643