I have written htaccess file. I want to redirect https://example.com/index.php?route=product/category&path=1 to https://example.com/fashion.
My htaccess is
RewriteEngine On
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
But it is not redirecting to the link I have shown