How can I strip away extra paramters on source dynamic URL
-
Hello – I have the following URL
/products/product_item.asp?ID=Item Name Is This
and I now know how to redirect dynamic URL with^/products/product_item.asp(\?)ID=Item Name Is This
redirect to
/products/Item Name Is This/But sometimes extra url variables may have been used and indexed by google that we no longer want to handle and I would like to ignore all of those.
Right now if the following URL is used
/products/product_item.asp?ID=Item Name Is This&var2=value
it gets redirect to
/products/Item Name Is This/&var2=value
…which is a broken linkHow can get rid of the extra bits I don’t need to get a valid URL?
Thanks.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘How can I strip away extra paramters on source dynamic URL’ is closed to new replies.