Ive recently redesigned my website, new CSS, new graphics for buttons etc. When existing users return to my site I want to make sure they get served the new pages and style sheets and the browsers dont try to load the old stylesheets etc.
Previously my headers looked like this -
I have a header file for the public pages -
<meta http-equiv="expires" content="Tue, 16 Feb 2019 09:00:00 GMT">
<meta http-equiv="cache-control" content="max-age=315360000">
And a header file for the pages inside the site (after a user has logged on)
<meta http-equiv="expires" content="Mon, 04 Dec 1999 21:29:02 GMT">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="expires" content="-1">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
I'm thinking that its likely that the pages inside the site will be served fresh as the cache control has specified no cache etc. But will my visitors to the public pages still see cached versions? Should I add teh same cache-control tags to the header file for the public pages too?
One other thing i did was to add a query string to the new css file to force a new load -
eg -
<link rel="stylesheet" href="css/styles.css?new" type="text/css" >
Any other good advice / best practices for this?
thanks!