The main page of my website does not show the latest posts

#1
Hello,

The main page of my website Arthenos is not updated automatically in Chrome/Firefox/Safari/Opera when I publish new posts or new comment. I must press F5 each time I publish something to show the most recent articles. I think it is the browser cache issue. It is as if Litespeed does not detect the changes or does not indicate the changes to the browser and this therefore shows an old version of the site stored locally.

How can I resolve this problem?
Thanks in advance for your interest and help!

Regards.
 

NiteWave

Administrator
#2
in my Chrome:
Code:
Request URL: https://www.arthenos.com/
Request Method: GET
Status Code: 200 
Remote Address: 5.2.82.132:443
Referrer Policy: no-referrer-when-downgrade

alt-svc: quic=":443"; ma=2592000; v="39,43,46", h3-Q039=":443"; ma=2592000, h3-Q043=":443"; ma=2592000, h3-Q046=":443"; ma=2592000, h3-23=":443"; ma=2592000
cache-control: public, max-age=7776000
content-encoding: br
content-length: 47776
content-type: text/html; charset=UTF-8
date: Tue, 10 Dec 2019 03:38:29 GMT
etag: "54535-1575933852;br"
expires: Sun, 08 Mar 2020 23:24:12 GMT
link: <https://www.arthenos.com/wp-json/>; rel="https://api.w.org/"
link: <https://wp.me/P9eaQr-H>; rel=shortlink
server: LiteSpeed
status: 200
vary: Accept-Encoding,User-Agent
x-litespeed-cache: hit
should be
Code:
cache-control: public, max-age=7776000
which has caused the problem.

most likely it's from a "header set cache-control" directive.
you can delete it if fount it somewhere, then the issue should be gone.
 
Top