301 Redirection from no-www https to www https in wordpress
after an analysis of the woorank site, i have this result So i try to add a 301 redirection for https://monsite.com to https://www.monsite.com 301 https redirects to without WWW RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] But it's…