I want an auto hard refresh, not a simple auto refresh on my webpages?

I was searching for an answer to this, and it's all in the headers apparently You need to send a no-cache header, in php this would be: header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1 header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); // Date in the past and then just refresh as normal (javascript or meta).

I was searching for an answer to this, and it's all in the headers apparently. You need to send a no-cache header, in php this would be: header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1 header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); // Date in the past ..and then just refresh as normal (javascript or meta).

Simon, that seems interesting. I've found though another solution through the webserver: We use Nginx, and we had the 'expires max;' parameter on our config file: that was the reason the page was always cached until users pressed Ctrl+F5. Deleting that line has solved the problem, but your approach is also very handy.

Thanks! – javipas Aug 16 at 12:03.

Use this Method: grizzlyweb.com/webmaster/javascripts/ref... It uses JS to the refresh and won't load the page from the browsers bf-cache so it should do what you require. It will also prevent entries from going into the users BF-cache so they will be able to use the back button correctly.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions