Prince Nnamdi
Prince Nnamdi

Reputation: 37

Simple .htaccess rule to redirect subfolder

How do i edit the .htaccess file to redirect all links in a subdirectory to another subdirectory

inactive url

http://example.com/dir/archive/AnythingHere

redirect location

http://example.com/dir/new/

Upvotes: 0

Views: 33

Answers (1)

anubhava
anubhava

Reputation: 785286

You can use this code in your DOCUMENT_ROOT/.htaccess file:

RewriteEngine On

RewriteRule ^dir/archive/(.*)$ /dir/new/$1 [L,NC,NE,R=302]

Make sure to place this rule as very first rule in your WP .htaccess file

Upvotes: 1

Related Questions