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.

2 diffrent PRs

Discussion in 'All Other Search Engines' started by asgsoft, Apr 10, 2007.

  1. Red_Virus

    Red_Virus Well-Known Member

    Messages:
    3,756
    Likes Received:
    249
    Best Answers:
    0
    Trophy Points:
    135
    #21
    I agree that this is the best method, But what i feel is that u shd stop using http://sitename.com
     
    Red_Virus, Apr 13, 2007 IP
  2. hispalis

    hispalis Peon

    Messages:
    101
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #22
    If you use Google sitemap you can choose your preferred domain.
     
    hispalis, Apr 16, 2007 IP
  3. asgsoft

    asgsoft Well-Known Member

    Messages:
    1,737
    Likes Received:
    34
    Best Answers:
    0
    Trophy Points:
    160
    #23
    how do you do that?

    I've used google sitemaps for the last year.
     
    asgsoft, Apr 16, 2007 IP
  4. alexanderallard

    alexanderallard Active Member

    Messages:
    221
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    78
    #24
    this is interesting. i would do this.
     
    alexanderallard, Apr 16, 2007 IP
  5. hispalis

    hispalis Peon

    Messages:
    101
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #25
    This link show you how, What's a preferred domain? :D
     
    hispalis, Apr 16, 2007 IP
  6. Aragorn

    Aragorn Peon

    Messages:
    1,491
    Likes Received:
    72
    Best Answers:
    1
    Trophy Points:
    0
    #26
    Using Google sitemap to make www.yourdomain.com is useul only for Google.What bout other search engines? Using htaccess is the best solution.
    The above code redirect all request to non www pages to the homepage. It should be
    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^thewebmasterstool.com
    RewriteRule (.*) http://www.thewebmasterstool.com\1 [R=301,L]
    Code (markup):
    A more general solution will be
    RewriteEngine on
    RewriteCond %{HTTP_HOST} !^www [NC]
    RewriteRule (.*) http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,NC,L]
    
    Code (markup):
    This works for subdomains too.
     
    Aragorn, Apr 16, 2007 IP
    asgsoft likes this.