I have a web site with an index.html homepage that is updated from time to time. We sometimes add offers for our clients, special messages and so on, which have to be visible by next day for everyone.

If index.html is cached by browsers, many users will not notice that anything has changed, unless they explicitly refresh the contents of the page...

Which is the best way to be sure that 100% visitors have an up-to-date index.html page, without compromising cache performance?

link|improve this question

64% accept rate
feedback

1 Answer

My best answer would be to skip out on updating the index.html each time and go with a server-side programming language, like PHP. You can then set the headers for the page to not cache, and you can also set up an admin page that you can use to change the content. Or you could go with a browser-side script with JavaScript using AJAX. Then the page has an ability to update before the next loading of the site.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.