Domain canonical
-
A SEO tool told me the following:
“Warning! WWW and NON-WWW do not redirect to the same version of the website.”
I was told my website doesn have a redirect to a favourite canonical version, so I had to implement in htaccess one of the 2 following codes
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [L,R=301]
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [L,R=301]It seems to me I already have a redirect to sacconicase.com, so I’m a little bit confused. I’d prefer to have sacconicase.com as canonical version, without “www”, what is worth to do in a SEO logic?
The page I need help with: [log in to see the link]
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
You must be logged in to reply to this topic.