WooCommerce

#1
Any recommendations on how to modify the recommended WordPress caching rules for sites with the WooCommerce plugin installed?

<IfModule LiteSpeed>
CacheEnable public /
RewriteEngine on
RewriteCond %{REQUEST_METHOD} ^(HEAD|GET)$
RewriteCond %{REQUEST_URI} !^(wp-admin|wp-login.php|wp-cron.php)
RewriteCond %{HTTP_COOKIE} !wordpress_logged_in_
RewriteRule .* - [E=Cache-Control:max-age=120]
</IfModule>
 
Top