I am trying to make my site show as www.thenanoscoop.com But whenever you enter that into the address bar, it gets redirected as thenanoscoop.com Any help would be great! Thanks.
Nevermind. I decided to keep it without the www - prefix. However, when i search my url in google I get my old content. None of which is on my site anymore. What can I do about this. Will it go away and be replaced with my new content?
I think you need submit a request ,of deleting your old url ,then subemit the new url in google webmaster tools
Look at this. See what its causing? Hits Percent Bandwidth 302 Moved temporarily (redirect) 295 37.8 % 13.20 KB 303 See other document 275 35.2 % 0 404 Document Not Found (hits on favicon excluded) 105 13.4 % 252.62 KB 301 Moved permanently (redirect) 93 11.9 % 3.83 KB 206 Partial Content 10 1.2 % 25.40 KB 500 Internal server Error 1 0.1 % 1.23 KB 403 Forbidden 1 0.1 % 4.06 KB
If you are using apache server server follow below code RewriteEngine on RewriteCond %{HTTP_HOST} ^www.domain.com$ RewriteRule ^(.*) http://domain.com/$1 [L,R=301] Code (markup):