hello , what i mean is : http://www.url-for-example.com and url-for-example.com .... it's not the same for the google-bot and not good for seo what will be the best way to avoid that ? im using asp.net Thanks .
There are a number of ways you can do this, I tend to use .htaccess. Options +FollowSymLinks RewriteEngine on RewriteCond %{HTTP_HOST} ^yourdomain\.com RewriteRule ^(.*)$ http://www.yourdomain.com/$1 [R=permanent,L] Code (markup): - Matt