Hello , I just build a website (I'm not a professional web designer) and as web master I just checked there having some canonical issues like www and with out www or you can say index and with out index. So I'm bit confused is there any effect from googlebot? Any suggestion pls.
For your www issue, just modify your .htaccess file to include the following (redirects www to non-www): RewriteEngine On RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC] RewriteRule ^(.*)$ http://%1/$1 [R=301,L] Code (markup): For the other part, you just mean that you can access the home page by both going to your domain and by typing in the index file after it? That shouldn't be an issue. If you really want to, you can use a Rewrite in .htaccess for your index file.
In simple words, to solve your canonical issue, you just need to redirect URL without "www" to the URL with "www".