How to regex replace a query string with matching 2 words?

I have a url and I want to replace the query string. For example

www.test.com/is/images/383773?wid=200&hei=200

I want to match the wid= and hei= and the numbers don’t have to be 200 to replace the whole thing so it should look like this.

Expected
www.test.com/is/images/383773?@HT_dtImage

So I’ve tried doing but it only replaced the matching wei and hei.

const url = "www.test.com/is/images/383773?wid=200&hei=200"

url.replace(/(wid)(hei)_[^&]+/, "@HT_dtImage")