Download the PHP package outeredge/magento-module-cachebuster without Composer
On this page you can find all versions of the php package outeredge/magento-module-cachebuster. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download outeredge/magento-module-cachebuster
More information about outeredge/magento-module-cachebuster
Files in outeredge/magento-module-cachebuster
Download outeredge/magento-module-cachebuster
More information about outeredge/magento-module-cachebuster
Files in outeredge/magento-module-cachebuster
Vendor outeredge
Package magento-module-cachebuster
Short Description Magento CacheBuster Module by outer/edge
License MIT
Package magento-module-cachebuster
Short Description Magento CacheBuster Module by outer/edge
License MIT
Please rate this library. Is it a good library?
Informations about the package magento-module-cachebuster
magento-module-cachebuster
Adds md5 hash to assets for cachebusting post-deployment.
mod_rewrite configuration
Add the following rewrite rule to your .htaccess file
<IfModule mod_rewrite.c>
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)\.([0-9a-f]{32})\.(.+)$ $1.$3 [L]
</IfModule>
nginx configuration
Add the following into your server block
location ~ "(.+)\.([0-9a-f]{32})\.(.+)$" {
expires max;
try_files $uri $1.$3 =404;
}
All versions of magento-module-cachebuster with dependencies
PHP Build Version
Package Version
The package outeredge/magento-module-cachebuster contains the following files
Loading the files please wait ....