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 has been 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:
<Files index.php>
allow from all
</Files>
<IfModule mod_rewrite.c>
RewriteEngine on
# 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>
<IfModule mod_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...
The text was updated successfully, but these errors were encountered:
WP-Rocket plugin use a specific
.htaccess
file to handle minification which is: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...
The text was updated successfully, but these errors were encountered: