Topic: URGENT - 301 redirect needs to be put in place
Setup a 301 redirection through htaccess like this:
RewriteCond %{HTTP_HOST} ^chordie.com [NC]
RewriteRule ^(.*)$ http://www.chordie.com/$1 [L,R=301]
or if you want all traffic to go to the non-www:
RewriteCond %{HTTP_HOST} ^www.chordie.com [NC]
RewriteRule ^(.*)$ http://chordie.com/$1 [L,R=301]
Because your site is basically duplicated on the non-www compared to the www and search engines don't like that and it's also confusing for when you bookmark the site. Just wanted to do my part in helping out the site :-)