Geta / geta-notfoundhandler

The popular NotFound handler for ASP.NET Core and Optimizely, enabling better control over your 404 page in addition to allowing redirects for old URLs that no longer works.
Apache License 2.0
20 stars 16 forks source link

Should not redirect to new url with parameter #111

Open meedipak opened 9 months ago

meedipak commented 9 months ago

I have setup as below Old url : /my-account/purchase-carduser##@@$(text)-+*0123text New Url : /my-account/frequently-purchased Wild Card : true (Checked) Redirect Type : Permanent

Note : /my-account/purchase-carduser is 404 url.

When I open the old url http://{hostname}/my-account/purchase-carduser##@@$(text)-+*0123text Then it redirecting to new url, but appending the parameters from old url. http://{hostname}/my-account/frequently-purchased##@@$(text)-+*0123text.

Ideally it should redirected to new url as it is without appending any parameter.