In file “wp-cache-phase1.php”
after – $wp_cache_request_uri = $_SERVER[‘REQUEST_URI’];
(77 line)
You can add 4 lines to ignore gclid parameters
//start
$nrGetParams = strpos($wp_cache_request_uri, ‘?gclid’);
if ($nrGetParams) {
$wp_cache_request_uri = substr($wp_cache_request_uri, 0, $nrGetParams);
}
//end
-
This reply was modified 9 years, 3 months ago by cacko.
-
This reply was modified 9 years, 3 months ago by cacko.
-
This reply was modified 9 years, 3 months ago by cacko.
-
This reply was modified 9 years, 3 months ago by cacko.
-
This reply was modified 9 years, 3 months ago by cacko.