I'm trying to 301 the following url
http://www.site.com/reviews/4f64d2862c16bf4ae40000b4?sort=all-positive
to
http://www.site.com/reviews
By using
RewriteRule ^reviews/([a-fA-f0-9]+)?$ http://www.site.com/reviews [L,R=301]
But that redirects me to
http://www.site.com/reviews?sort=all-positive
How can I remove all query strings after what was the review id? Basically the question mark and everything after it needs to go. Any ideas?
Thanks!