Forum Moderators: DixonJones
According to our logs, we have an overlap of hits to these links across different months. There is no way that these same links are on the site on different months.
So, can it be that when some people visit the homepage, they get a cached version, so the old links still appear for them to click on?
I can't think of any other explanation. It's driving me nuts!
For Apache, see mod_headers [httpd.apache.org] and mod_expires [httpd.apache.org].
Example:
# Set up Cache Control headers
# Default - Set http header to expire everything 1 week from last access, set must-revalidate
ExpiresActive On
ExpiresDefault A604800
Header append Cache-Control: "must-revalidate"
<Files index.htm>
ExpiresDefault A3600
</Files>
<Files index.html>
ExpiresDefault A3600
</Files>
<Files news.html>
ExpiresDefault A60
Header unset Cache-Control:
Header append Cache-Control: "no-cache, must-revalidate"
</Files>
HTH,
Jim