Replaces the querystring ?m=timestamp versioning to include the filestamp before the file extension for better caching
- Install the module as usual.
- Add the following code to your .htaccess
<IfModule mod_rewrite.c>
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+)\.(\d+)\.(js|css|png|jpg|gif)$ $1.$3 [L]
</IfModule>