W3TC not caching /feed/
-
Hello,
I cannot figure out why the
/feed/
url is not caching. The rest of the site is page caching just fine intowp-content/cache/page_enhanced/
. Two different sites, one on apache and the other via nginx. Both have theCache feeds
option enabled.There are no files created for
feed
in thepage_enhanced
folder.Any ideas where to start looking?
[Sun, 15 Oct 2017 12:26:42 +0000] [/feed/] [-] start, can_cache: true
[Sun, 15 Oct 2017 12:26:42 +0000] [/feed/] [-] no cache entry for site.dev/feed/_index.html
[Sun, 15 Oct 2017 12:26:42 +0000] [/feed/] [-] storing cached page – not a cached content`
add_filter( ‘w3tc_is_cacheable_content_type’, function( $content_types ){
$content_types[] = ‘application/rss+xml’;
return $content_types;
} );
`
Thanks,
Dave
- The topic ‘W3TC not caching /feed/’ is closed to new replies.