I'm trying to redirect (note without query strings):
http://www.reviews.com/review/review_review.cfm?review_id=135223
to
http://www.reviews.com/
The current rule:
Redirect 301 /review/review_review.cfm http://www.reviews.com/
Causes the original URL to redirect to http://www.reviews.com/?review_id=135223
Based on a few stack questions here and here, I should be able to add a ? to the Redirect rule as below:
Redirect 301 /review/review_review.cfm http://www.reviews.com/?
but this redirects to http://www.reviews.com/?. The trailing ? remains. How do I get rid of this it's killing me.