Iam trying to do 301 redirection. But it doesnt get redirected.
My old URL : https://www.example.com/category.php?filter=Short%20Term%20Renting
My new URL : https://www.example.com/services/short-term-renting
My code in .htaccess:
RewriteEngine On
RewriteCond %{QUERY_STRING} ^([^&]&)*filter=Short%20Term%20Renting(&|$)
RewriteRule ^category.php/services$ /short-term-renting? [L,R=301]
I referred with this link "301 Redirecting URLs based on GET variables in .htaccess"