w3tc query string page cache enhanced

2.3.3
Fix: Page Cache: Moved hardcoded query string exemptions to the settings page

https://ja.wordpress.org/plugins/w3-total-cache/#developers

2.3.2

RewriteCond %{QUERY_STRING} =""

→クエリストリング(例えばfbclid)があるリクエストがキャッシュされない

2.3.3

RewriteRule ^ - [E=W3TC_QUERY_STRING:%{QUERY_STRING}]
RewriteCond %{ENV:W3TC_QUERY_STRING} ^(.*?&|)_branch_match_id(=[^&]*)?(&.*|)$ [NC]
RewriteRule ^ - [E=W3TC_QUERY_STRING:%1%3]
...
RewriteCond %{ENV:W3TC_QUERY_STRING} ^(.*?&|)fbclid(=[^&]*)?(&.*|)$ [NC]
RewriteRule ^ - [E=W3TC_QUERY_STRING:%1%3]
...
RewriteCond %{ENV:W3TC_QUERY_STRING} =""

https://github.com/szepeviktor/w3-total-cache-fixed/issues/221