To redirect all www traffic to non-www URL – you need to add the following lines in .htaccess file:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.example.com
RewriteRule ^(.*)$ http://example.com/$1
Replace example.com with your own domain name.