In wordpress site how to Redirect the non-www version of the site to the www version to remove duplicate content
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^http:www.//demo.yourdomain.com/realestate/$
RewriteRule (.*) demo.yourdomain.com/realestate/$1 [L,R=301]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
</IfModule>
# END WordPress
this has not redirect the www site to non-www site. please any help me.