[ad_1]
Hello @wooq123,
This is correct. Adding “/” in the “Exclude URLs from Caching” filter will disable the dynamic cache for the home page only.
Alternatively, you can add the following rule to the functions.php file of your active theme:
add_filter( 'sgo_exclude_urls_from_cache', 'sgo_add_excluded_urls_from_cache');
function sgo_add_excluded_urls_from_cache( $excluded_urls ) {
// The part of the URL which needs to be excluded from cache.
$excluded_urls[] = '/';
return $excluded_urls;
}It will have the same effect.
Best regards,
Kuzman Stoyanov
