nginx does not set static file caching


Nginx.conf nginx find files in the installation directory, and then add the following content inside nginx

location / {

add_header Cache-Control no-cache;

add_header Pragma no-cache;

add_header Expires 0;

}

 

 

 

Guess you like

Origin www.cnblogs.com/mr-wuxiansheng/p/11348149.html