How URL Redirection for a website

Now I want to optimize a website, but i don’t know should i redirect my domain from http://www. to http://. Pleae give me a advice. thanks so much!

<snip/>

Yes you must redirect because if you will not redirect Google will count it as a duplicate site and may punish your site its called canonical problem. So try to avoid it. :slight_smile:

You should use only one of those, or link back only to one of those, as Google sees those two as different

In your .htaccess file, you need something like:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\\.domain\\.com$ [NC]
RewriteRule ^(.*)$ http://domain.com/$1 [R=301,L]