Download File Instead of Load Website - Wp Rocket

I’m loving cyber panel with litespeed, but I can’t use WP Rocket.

When I activate the plugin, instead of loading the page, he downloads a file.

What we should do?

In .htaccess file of your website in rules added by WP Rocket change “RewriteRule .* - [E=WPR_ENC:_gzip]” to “RewriteRule .* - [E=WPR_ENC:-gzip]”

or

100% fixed if you do like this
OpenLiteSpeed

or make file .htaccess like this
BEGIN WordPress

RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
END WordPress