Redirect a Subdirectory contents to Index

About: To redirect whole subdirectory to an index page of a web you can use this technique Permanent Redirect: RedirectMatch 301 ^/subdirectory/.*$ http://www.domain.com Temporay Redirect: RedirectMatch 302 ^/subdirectory/.*$ http://www.domain.com

To redirect whole subdirectory to an index page of a web you can use this technique

Permanent Redirect:
RedirectMatch 301 ^/subdirectory/.*$ http://www.domain.com

Temporay Redirect:
RedirectMatch 302 ^/subdirectory/.*$ http://www.domain.com

Leave Comment