Dynamic mapping:
**/feature/*?** p,,,Search-Show,,cgid,{1},{_querystring}
When hitting the URL as below:
/feature/men?utm_subchannel=BAU&utm_source=RLE&utm_medium=SMS&utm_campaign=20240612_RLE_UK_SMS_Summer_Sale_Public_Launch_3pm
/feature/men?utm_subchannel=BAU&utm_source=RLE&utm_medium=SMS&utm_campaign=20240612_RLE_UK_SMS_Summer_Sale_Public_Launch_6pm
/feature/men?utm_subchannel=BAU&utm_source=RLE&utm_medium=SMS&utm_campaign=20240612_RLE_UK_SMS_Summer_Sale_Public_Launch_12pm
Assume I hit the first URL, it redirects to Search-Show with the correct query parameter that is being passed from the old URL. When hitting the second URL, it holds a different query string value, but it considers the first one's query string and redirects to Search-Show.
I want to avoid the caching issue.Could any body please help me to resolve this ?