I submitted site by mistake two diffrent way during directory submission. 1)http://mydomain.com 2)www.mydomain.com is there any suggession on this.
No mistake but be sure to redirect the non-www version to www in .htaccess to get the best results. Just add the lines below into your .htaccess RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} ^domain\.com$ RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L] Change "domain" with your own.