1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Backlinks: 0, Backlinks w/WWW: 565?

Discussion in 'Link Development' started by Agurus, Feb 12, 2008.

  1. #1
    Hi guys I was runnign a domain stats tool on the web and it gave me this stats on back links:

    Backlinks 0
    Backlinks (with www) 565

    What does it mean having backlinks without WWW? How can I increase the one without www? Thanks not sure what that really means.
     
    Agurus, Feb 12, 2008 IP
  2. LoCo

    LoCo Well-Known Member

    Messages:
    232
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    130
    #2
    well i had this same issue, i discovered that pagerank and backlinks and everything was seperated between my domain with www and without it..

    I just decided for one of them and 301 redirect it to my domain without www

    so if somebody comes in with www.mydomain.tld he will get redirected to mydomain.tld this will also pass your pagerank and spiders (not quite sure about passing backlinks), but you should not have this issue anymore if you decide to 301 one to the other, im sure there are other solutions and i would welcome other solutions, but thats my 2cents to it, its a temp solution that works out for me..

    Regards
     
    LoCo, Feb 12, 2008 IP
  3. attick

    attick Peon

    Messages:
    137
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #3
    I have the same thing on my site. With www/800, without www/230. I think it's the sites linking to yours and if they used the www in your text link. When you enter your url in the browser window, with and without the www. does your site come up?
     
    attick, Feb 12, 2008 IP
  4. Agurus

    Agurus Active Member

    Messages:
    252
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    51
    #4
    yes it does actually...how can I fix this?
     
    Agurus, Feb 12, 2008 IP
  5. attick

    attick Peon

    Messages:
    137
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #5
    ( was told that it didn't ,atter and to not worry about it. Fron now on when you request a link from someone you have to specify with or without the www to keep it the same.
     
    attick, Feb 12, 2008 IP
  6. Agurus

    Agurus Active Member

    Messages:
    252
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    51
    #6
    Agurus, Feb 12, 2008 IP
  7. Agurus

    Agurus Active Member

    Messages:
    252
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    51
    #7
    How do I 301 redirect? Thanks
     
    Agurus, Feb 13, 2008 IP
  8. tarponkeith

    tarponkeith Well-Known Member

    Messages:
    4,758
    Likes Received:
    279
    Best Answers:
    0
    Trophy Points:
    180
    #8
    It's got something to do with the .htaccess; I always say I'm going to do it, but never actually look into exactly HOW to do it, haha
     
    tarponkeith, Feb 13, 2008 IP
  9. Dougp

    Dougp Peon

    Messages:
    14
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #9
    not sure if I'm allowed to post links in posts yet however this has a great explanation of a few ways to do 301 redirects.

    en.wikipedia.org/wiki/URL_redirection

    I normally do them in my .htaccess file but that will do the redirect site wide. If you need to do just a couple of pages for some strange reason then an http redirect will do the trick.

    Use caution playing with your .htaccess file. Maybe double check your server type and just do another search on google to make sure what code to use cause it's not the same for windows servers ;)
     
    Dougp, Feb 13, 2008 IP
  10. dspohn23

    dspohn23 Peon

    Messages:
    370
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    #10
    Below is an example of a .htaccess file, to redirect all pages on -> example.com to www.example.com.
    Note this is for website that run on Apache Web Server

    RewriteEngine On

    rewritecond %{http_host} ^example.com [nc]
    rewriterule ^(.*)$ http://www.example.com/$1 [r=301,nc]
     
    dspohn23, Feb 13, 2008 IP
    tarponkeith likes this.
  11. tarponkeith

    tarponkeith Well-Known Member

    Messages:
    4,758
    Likes Received:
    279
    Best Answers:
    0
    Trophy Points:
    180
    #11
    Works great, thanks +REP
     
    tarponkeith, Feb 15, 2008 IP
  12. idisplayforless

    idisplayforless Peon

    Messages:
    114
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #12
    I am having the same problem! I have this on another post.

    I want to do something like this, when people type in "mysite.com" it will redirect them to "www.mysite.com"...i believe lots of people here are already very familiar with this question.

    How would I able to do this if my site is hosted in IIS?

    1) I don't have admin access.
    2) all my pages are .htm.

    Many thanks,
     
    idisplayforless, Feb 15, 2008 IP
  13. rkalajian

    rkalajian Peon

    Messages:
    129
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #13
    You can also setup a Google Webmaster Tools account and tell it to count all www an non www backlinks as the same.
     
    rkalajian, Feb 15, 2008 IP
  14. Spider-Man

    Spider-Man Banned

    Messages:
    2,684
    Likes Received:
    211
    Best Answers:
    0
    Trophy Points:
    0
    #14
    If using an apache server, create a file called .htaccess

    Note: YES, the file is called .htaccess with a dot.

    Enter this into the file:

    
    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^yourdomain.com
    RewriteRule (.*) http://www.yourdomain.com/$1 [R=301,L]
    
    Code (markup):
    This will permanently redirect "http://yourdomain.com" to "http://www.yourdomain.com".

    You will also need to add the following to the .htaccess file

    301 redirect /index.html http://www.yourdomain.com/
    Code (markup):
    Or
    301 redirect /index.php http://www.yourdomain.com/
    Code (markup):
    Etc, whatever your 'home' file is called, redirect it to yourdomain.com/ - note the backslash at the end.
     
    Spider-Man, Feb 15, 2008 IP
  15. idisplayforless

    idisplayforless Peon

    Messages:
    114
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #15
    Sorry! I am not using Apache...

    I already told Google Webmaster Tools to point to my www. domain.

    Would that be enough??

    I want something like .htaccess but instead working with IIS

    Thanks
     
    idisplayforless, Feb 15, 2008 IP
  16. Spider-Man

    Spider-Man Banned

    Messages:
    2,684
    Likes Received:
    211
    Best Answers:
    0
    Trophy Points:
    0
    #16
    For IIS, please follow the following rules:

    Microsoft servers do not have a .htaccess file to alter so we suggest that you contact your hosting provider and request they make this change for you. If they are baffled or need further instructions on how to make the changes you can refer them to the tutorials referenced below:

    1. Using Internet Services Manager create a new IP-based website using the "http://example.com" URL or alternatively you can avoid using a unique IP by using the host header (virtual website) of "www.example.com".

    2. Now verify the server headers for each website using the Server Header Checker. The server response should be 200 OK for both addresses.

    3. Now add your domain-revised version of the following ASP code to the default home page for "http://example.com:"
    
          < %@ Language=VBScript %>
          < %
          Response.Status="301 Moved Permanently"
          Response.AddHeader "Location", [url]http://www.example.com[/url]
          %>
    
    Code (markup):
    Note: do not change the spacing or line placement within the above code; place it as is.

    4. Once the default page is online first visit your website via "http://example.com" to ensure the redirect is working. Next check the server headers for "http://example.com" and make sure you see the following code within #1: "HTTP Status Code: HTTP/1.1 301 Moved Permanently". That code will confirm the 301 redirect is being properly communicated.
     
    Spider-Man, Feb 15, 2008 IP
  17. idisplayforless

    idisplayforless Peon

    Messages:
    114
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #17
    Thanks for the information! I have contacted my hosting provider but Unfortunately, they are not very cooperative and wouldn't do any changes for me in the server.

    Can I do anything in my web.config file to do the redirect since all my pages are .htm based

    Thanks
     
    idisplayforless, Feb 15, 2008 IP