John Smith
John Smith

Reputation: 186

.htaccess redirect directory and subdirectories

I have a problem with the following redirects:

Redirect 301 /mainfolder http://www.test.com/newlink1
Redirect 301 /mainfolder/subfolder http://www.test.com/newlink2

1st redirect works fine, but 2nd one inestead of redirecting to /newlink2 goes to

http://www.test.com/newlink1/subfolder

Upvotes: 0

Views: 44

Answers (1)

John Smith
John Smith

Reputation: 186

I put longer redirect first in .htaccess and it fixed the problem:

Redirect 301 /mainfolder/subfolder http://www.test.com/newlink2
Redirect 301 /mainfolder http://www.test.com/newlink1

Upvotes: 1

Related Questions