Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>No, it controls only current document. If you dont want ugly URIs with random query-strings, its the time to configure your server. Assuming Apache:</p> <pre><code># mod_expires directives: # enable expires/max-age headers and set default to 0 seconds from last access time ExpiresActive On ExpiresDefault A0 # configure ExpiresByType on your specific types, eg ExpiresByType text/css A0 # mod_headers directives: # send variety of no-cache directives, should cover any quirky clients and gateways Header set Cache-Control "max-age=0, private, no-cache, no-store, must-revalidate, proxy-revalidate, no-transform" Header set Pragma "no-cache" # enclose this in &lt;Files&gt; directive for specific file eg &lt;Files *.js&gt; </code></pre> <hr> <p>These directive groups will work in per-directory configs (<code>.htaccess</code> files) too (in case of shared environment hosting), given following requirements met:</p> <ol> <li><code>AllowOverride FileInfo</code> is in effect </li> <li>Either <code>mod_expires</code> or <code>mod_headers</code> is enabled</li> </ol> <p>If both are enabled - note that groups are overlapping on <code>max-age</code>, you will want to remove it from <code>Header</code> and use finer control via <code>ExpiresXXXX</code>. Described setup is rather common for the shared hosting environment, so ask server admin or just try yourself (will return <code>500 Internal Server Error</code> if corresponding module is not enabled or have no effect if <code>.htaccess</code> processing is not enabled)</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload