It is better to set up an automatic redirect from www. to the address without www.
Insert to .htaccess the code
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L] It is better to set up an automatic redirect from www. to the address without www.
Insert to .htaccess the code
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]