Forum Moderators: open
I have the below cache control headers in my pages to insure that pages don't get cashed on the user machine/proxy. Do they have an affect on how the Google bot indexes the page?
Does it also affect how other search engines index a page witn the below headers?
Cheers,
epsrx
----------------------------
<?php
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-cache, no-store, must-revalidate");
?>