SEO Friendly URL Question

Discussion in 'Search Engine Optimization' started by mpls-web-design, Apr 27, 2007.

  1. #1
    Hi,

    I am creating a few links on my home page with links pointing several sections of a single page:

    <a href="my-page.html#Q1">link1</a>
    <a href="my-page.html#Q2">link2</a>

    This is the destination page "my-page.html" with each section labeled with "Q1", "Q2" ...

    <a href="#Q1">
    <a href="#Q2">

    My question is: will the url like "my-page.html#Q1" hinder spiders from finding the "my-page.html"?

    Thanks in advance!
     
    mpls-web-design, Apr 27, 2007 IP
  2. BenjArriola

    BenjArriola Peon

    Messages:
    175
    Likes Received:
    18
    Best Answers:
    0
    Trophy Points:
    0
    #2
    If you are just using anchors on your page to scroll up and down, and use:

    <a href="#Q1">
    <a href="#Q2">

    Even if you use:

    <a href="my-page.html#Q1">link1</a>
    <a href="my-page.html#Q2">link2</a>

    It is like a link from the same page going the same page. You will get more benefit interlinking different pages to each other. So in that case I believe it does not matter.

    But if it is from another page going to another page, then this is required otherwise it will not work:

    <a href="my-page.html#Q1">link1</a>
    <a href="my-page.html#Q2">link2</a>

    But just as a good practice, I like using absolute URLs everywhere:

    <a href="http://www.domain.com/my-page.html#Q1">link1</a>
    <a href="http://www.domain.com/my-page.html#Q2">link2</a>

    Just because I work better with it in custom-made CMS and is less prone to page hijacking and scraping. (Emphasis on less prone. Of course it still can be hijacked and scraped and do a simple find and replace)
     
    BenjArriola, Apr 27, 2007 IP
  3. trichnosis

    trichnosis Prominent Member

    Messages:
    13,785
    Likes Received:
    333
    Best Answers:
    0
    Trophy Points:
    300
    #3
    there is no difference between your urls. in eye of spider <a href="my-page.html#Q1">link1</a> and <a href="my-page.html#Q2">link2</a> are the same pages. spiders will only see my-page.html
     
    trichnosis, Apr 27, 2007 IP
  4. jl255

    jl255 Well-Known Member

    Messages:
    2,762
    Likes Received:
    211
    Best Answers:
    0
    Trophy Points:
    185
    #4
    the answer is 'no' to your question....
     
    jl255, Apr 27, 2007 IP