Error 418 Wordpress, SSL Redirection and W3 plugin

1

I bought an SSL certificate for my blog and then edited .htaccess to include 301 redirect.

I got a response that there were too many redirects and then I checked the file and found the commands created by the W3 plugin, used for memory control, browser memory usage for acceleration, etc.

Here are the commands:

RewriteEngine On
RewriteBase /
RewriteCond %{HTTPS} =on
RewriteRule .* - [E=W3TC_SSL:_ssl]
RewriteCond %{SERVER_PORT} =443
RewriteRule .* - [E=W3TC_SSL:_ssl]
RewriteCond %{HTTP:Accept-Encoding} gzip
RewriteRule .* - [E=W3TC_ENC:_gzip]
RewriteCond %{HTTP_COOKIE} w3tc_preview [NC]
RewriteRule .* - [E=W3TC_PREVIEW:_preview]
RewriteCond %{REQUEST_METHOD} !=POST
RewriteCond %{QUERY_STRING} =""
RewriteCond %{REQUEST_URI} \/$
RewriteCond %{HTTP_COOKIE} !(comment_author|wp\-postpass|w3tc_logged_out|wo$
RewriteCond "%{DOCUMENT_ROOT}/wp-content/cache/page_enhanced/%{HTTP_HOST}/%$
RewriteRule .* "/wp-content/cache/page_enhanced/%{HTTP_HOST}/%{REQUEST_URI}$

I want to understand what the Plugin is doing when using all these commands, but specifically the following is looking very strange to me:

RewriteCond %{REQUEST_METHOD} !=POST
RewriteCond %{QUERY_STRING} =""
RewriteCond %{REQUEST_URI} \/$
RewriteCond %{HTTP_COOKIE} !(comment_author|wp\-postpass|w3tc_logged_out|wo$

What does the use of this POST method command mean at this point in the .htaccess and where is it redirecting this information?

How can I disable the control of these commands in the W3 plugin without disabling the plugin as a whole?

Because I can not edit the .htaccess that the plugin does not allow.

    
asked by anonymous 21.02.2016 / 21:42

0 answers