Skip to content Skip to sidebar Skip to footer

Prevent Apache To Cache Html5 Manifest

This is probably really easy to solve, I've checked on stackoverflow but I did not find anything: I have WAMP Installed with PHP and Apache, running the latest version of the Larav

Solution 1:

Use an expire by type

The AddType statement is already present to ensure that manifest files have the right mime-type. This can be used to specify appropriate cache headers:

ExpiresByType text/cache-manifest "access plus 0 seconds"

This and more useful information is available in the html5 boilerplate htaccess file.

Post a Comment for "Prevent Apache To Cache Html5 Manifest"