我正在为我的HTTPS网站使用WP最快缓存插件。该插件一旦激活,就会向htaccess文件中添加几行代码。我怀疑RewriteCond %{HTTPS} !=on 在下面的部分中。这些行是否表示不会缓存HTTPS URL?这是插件的配置问题吗?
RewriteCond %{REQUEST_METHOD} !POST
RewriteCond %{HTTPS} !=on
RewriteCond %{REQUEST_URI} !(\\/){2}$
RewriteCond %{REQUEST_URI} \\/$
RewriteCond %{QUERY_STRING} !.+
RewriteCond %{HTTP:Cookie} !comment_author_
RewriteCond %{HTTP:Cookie} !woocommerce_items_in_cart
RewriteCond %{HTTP:Cookie} !safirmobilswitcher=mobil
RewriteCond %{HTTP:Profile} !^[a-z0-9\\"]+ [NC]
RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/all/$1/index.html -f
RewriteRule ^(.*) "/wp-content/cache/all/$1/index.html" [L]