Can I add exception to htaccess if URL contains "string"? Sth like:
<if URL contains "string">
ExpiresDefault "access plus 1 days"
</ifModule>
? My caching mod:
<ifModule mod_expires.c>
ExpiresActive On
ExpiresByType image/gif "access plus 1 months"
ExpiresByType image/jpg "access plus 1 months"
ExpiresByType image/jpeg "access plus 1 months"
ExpiresByType image/png "access plus 1 months"
ExpiresByType image/vnd.microsoft.icon "access plus 1 months"
ExpiresByType image/x-icon "access plus 1 months"
ExpiresByType image/ico "access plus 1 months"
ExpiresByType application/javascript "now plus 1 months"
ExpiresByType application/x-javascript "now plus 1 months"
ExpiresByType text/javascript "now plus 1 months"
ExpiresByType text/css "now plus 1 months"
ExpiresDefault "access plus 1 days"
</IfModule>
You can probably use
FilesMatch
directive which might work for you. It won't match "string" in QUERY_STRING though.Also make sure
FilesMatch
directive comes after earlier cache settings.