(In apache, in nginx, in php.) The disabled expires causes the browser to send "if-modified-since" (for the server to send 304 if necessary)

    2 answers 2

    For nginx something like that

    server { location / { expires off; } } 

      Add to .htaccess

       ExpiresActive Off 

      This is for Apache, nginx not in the know.

      • and in which section is added? - Oleg