
When it comes to optimising your website duplicate content is always an issue but much overlooked. Many webmasters do not even realise that Google may be inadvertently looking at 2 versions of there home page.
Thats because if you havent redirected your non-www version to your www version (or vica versa) then Google sees 2 versions of your site and slaps a duplicate content penalty on to your site.
The code below will help get rid of this. It will redirect the non-www version of your site to the www via a friendly 301 redirect telling Google that the site permanently exists at the www verion. Of Course this also applies for the rest of your site for which this code also helps.
Simply replace the example.com with your site reference (highlighted in green) and the save code to your .htaccess file and upload it to the root. If you dont have a .htaccess file then simply paste the code to a text file and save it as .htaccess then upload to the root of your folder. Of course you need an your UK Web Hosting account needs to be an Apache server for this to work correctly.
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.co.uk [NC]
RewriteRule ^(.*)$ http://www.example.co.uk/$1 [L,R=301]
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.html
RewriteRule ^index\.html$ http://www.example.co.uk/ [R=301,L]
The last 2 lines of code above simply redirect your index file to the root and apply’s a / so that Google doesn’t cache 2 copy’s of your home page i.e. www.example.co.uk and www.example.co.uk/index.html.
You can replace the html part of the code for php or htm if that’s what your using on you site
Tags: duplicate content, htaccess, uk web hosting, www

