Redirect old php link to wordpress link in .htaccess

I am trying to redirect old page link to new wordpress link using .htaccess, I tried two following redirection steps but none of them works.

Both are in same domain like www.example.com/folder/first-index.php?idTop=0 and www.example.com/foldernew/products-list/

Redirect 301 "/folder/first-index.php?idTop=0" "/foldernew/products-list/"
RedirectPermanent /folder/first-index.php?idTop=0 /foldernew/products-list/ 

I am trying other steps to but no luck. Please anyone correct my code. Thank you.

Leave a Comment