I have the following settings turned on in WP Super Cache:
- Cache hits to this website for quick access. Use PHP to serve cache files.
- Compress pages so they’re served more quickly to visitors.
- 304 Not Modified browser caching. Indicate when a page has not been modified since last requested.
- Don’t cache pages for known users.
- Don’t cache pages with GET parameters. (?x=y at the end of a url)
- Cache rebuild. Serve a supercache file to anonymous users while a new file is being generated.
- Cache Timeout 36000
- Add here strings (not a filename) that forces a page not to be cached. For example, if your URLs include year and you dont want to cache last year posts, it’s enough to specify the year, i.e. ’/2004/’. WP-Cache will search if that string is part of the URI and if so, it will not cache that page.
wp-.*\.php
index\.php - Add here those filenames that can be cached, even if they match one of the rejected substring specified above.
wp-comments-popup.php
wp-links-opml.php
wp-locations.php
Everything seems to be working well except I can't seem to get WP Super Cache to work on my homepage. Any suggestions?