Forum Moderators: DixonJones
Atlas DMT recommends that cache-busting tags (a time/date stamp or randomly generated number used to defeat proxy caching) be applied to all redirects. Insert the cache-busting tag after the final forward slash ("/").
you could use php to create a unix timestamp and append that
$extraparam = mktime();
$uniqueurl = $previousurl . '&ts=' . $extraparam;
no idea of how the url is presently constructed so that code doesnt make much sense but the mktime is what you could use