This is probably very easy to solve, I checked stackoverflow but didn't find anything:
I have WAMP installed with PHP and Apache, successfully completing the latest version of Laravel.
I have a cache.manifest file, it loads correctly, but it does not update, even if I change its contents.
So, I tried several things that I found, including:
AddType text/cache-manifest .manifest <IfModule mod_rewrite.c> Options -MultiViews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ index.php [L] </IfModule> <FilesMatch "\.manifest$"> Header set Cache-Control "max-age=259200, proxy-revalidate" </FilesMatch>
When I add the FilesMatch section, I always get an Internal Server Error
What can I do to prevent caching of the cache.manifest file only? I also tried other things with FileMatch, but it fails every time (for example, I had such code for images (png gif ...) and it did not work.
Thank you for your help.
source share