Hi, I dont want to cache my frontpage because it should show random posts each time.
I clicked under Accepted Filenames & Rejected URIs the button Frontpage and added "index" under the Add here strings (not a filename) that forces a page not to be cached.
But still it caches the frontpage.
My domain automatically redirects from http://www.xxx.com to http://www.xxx.com/index.php/ with the following code in htaccess:
RedirectMatch ^/$ /index.php [L]
and one line code change in canonical.php
if ( $compare_original !== $compare_redirect ) { $redirect_url = $redirect['scheme'] . '://' . $redirect['host'] . '/index.php'; "
and shows the random posts by (I thought, has been a while) this code:
<?php
if (is_home()) {
query_posts('orderby=rand');
}
?>
How do I disable caching the frontpage?