URL redirect

Discussion in 'Site & Server Administration' started by qwicksilver, Mar 29, 2011.

  1. #1
    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.
     
    qwicksilver, Mar 29, 2011 IP
  2. qwicksilver

    qwicksilver Peon

    Messages:
    6
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    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?
     
    qwicksilver, Mar 29, 2011 IP
  3. qwicksilver

    qwicksilver Peon

    Messages:
    6
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Cmon..... lil help.:confused:
     
    qwicksilver, Mar 29, 2011 IP
  4. igirlsgames

    igirlsgames Peon

    Messages:
    330
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    I think you need submit a request ,of deleting your old url ,then subemit the new url in google webmaster tools
     
    igirlsgames, Mar 30, 2011 IP
  5. qwicksilver

    qwicksilver Peon

    Messages:
    6
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    I did that already. Any other ideas?
     
    qwicksilver, Mar 30, 2011 IP
  6. qwicksilver

    qwicksilver Peon

    Messages:
    6
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    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
     
    qwicksilver, Mar 30, 2011 IP
  7. vinoth.t

    vinoth.t Peon

    Messages:
    156
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #7
    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):
     
    vinoth.t, Apr 4, 2011 IP