I think, I have fixed the issue with the following piece of code in my theme setup function:
if(strpos($_SERVER['QUERY_STRING'],'repeat=w3tc')!==false){
$uri = explode('?',$_SERVER['REQUEST_URI']);
wp_redirect(home_url($uri[0]), 301);
exit;
}
I think, I have fixed the issue with the following piece of code in my theme setup function:
if(strpos($_SERVER['QUERY_STRING'],'repeat=w3tc')!==false){
$uri = explode('?',$_SERVER['REQUEST_URI']);
wp_redirect(home_url($uri[0]), 301);
exit;
}