Redirect 301 .htacess not working

I have added a 301 redirect as follows,
Redirect 301 /drv/drv1/path /drv/drv1/
Redirect 301 /drv/drv1/path/path1 /drv/drv1/

yes there was no issue but when i goes to the /drv/drv1/path/path1 it redirect to /drv/drv1/

and the end found a solution for the issue 🙂
Just only change the order witch i had put in .htaccess
Redirect 301 /drv/drv1/path/path1 /drv/drv1/
Redirect 301 /drv/drv1/path /drv/drv1/

Enjoy 🙂

Leave a comment