You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 23, 2022. It is now read-only.
WP-Rocket plugin use a specific .htaccess file to handle minification which is:
<Filesindex.php>
allow from all
</Files>
<IfModulemod_rewrite.c>
RewriteEngineon# You may need RewriteBase on some servers#RewriteBase /min# rewrite URLs like "/min/f=..." to "/min/?f=..."RewriteRule^([bfg]=.*)index.php?$1 [L,NE]
</IfModule>
<IfModulemod_env.c>
# In case AddOutputFilterByType has been addedSetEnv no-gzip
</IfModule>
By default URL like /wp-content/plugins/wp-rocket/min/?f=/wp-includes/js/jquery/jquery.js,/wp-includes/js/jquery/jquery-migrate.min.js gave a 400 error...
Must fix that and maybe simplify the base rewrite rules here...