Question Re: rel="canonical"
Now my understanding from what Google provide is that this is really only worthwhile if you serve up duplicate content through multiple URLs.
For example:
• MyDomain.com/page
• www.MyDomain.com/page
• http://MyDomain.com/page
• https://www.MyDomain.com/page
If however I update the .htaccess file with the following:
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www.MyDomain.com
RewriteRule (.*) https://www.MyDomain.com/$1 R=301, L
Then surely using rel="canonical" on every single page become irrelevant, no...?
Motive: I`m working on a website with an horrendous plugin that`s creating incorrect rel="canonical" links and also creating duplicate ones so I would simply prefer to edit the htaccess file and be done with it and then remove these nasty plugins as it seems two are fighting for dominance.?