Welcome our webmaster and SEO forum
Please enjoy the forum, contribute what you can, and wind up the Moderators!
Closed Thread
Results 1 to 6 of 6

Thread: Yahoo indexing old URL's

  1. #1
    Jennifer Dallas is offline Junior Member Jennifer Dallas is on a distinguished road
    Join Date
    Mar 2009
    Posts
    3

    Question Yahoo indexing old URL's

    Hello everyone,

    I'm working for a ski tour operator and the site is well optimised with our keywords. All the meta tags and descriptions are in place and in general SEO has been going along quite nicely.

    In Google our site has 274 pages indexed, however in Yahoo we have over 800 indexed. This is largely due to a form that has not been added with a noindex tag and is therefore repeated over 100 times but I have also noticed something else which I'd like any ideas on.

    Recently we redirected a number of pages from old URL's to new better optimised URL's. The problem is that Yahoo is indexing the old URL and the new URL. I have spoken with my entire eCommerce team and no-one has seen this before. The only information I've found is that if a 302 redirect is used sometimes the search engines continue to index the old URL but I am assurred by my web developers they have used 301 redirects. The web developers also tell me this is just caused by a stale cache but we are not convinced.

    If anyone has any suggestions what could be causing this problem I'd be really greatful. Obviously at the moment it is creating an issue with duplicate content which is affecting my page rank.

    Many thanks
    Jennifer

  2. #2
    temi's Avatar
    temi is offline Facilitator temi is just really nice temi is just really nice temi is just really nice temi is just really nice temi is just really nice
    Join Date
    Jun 2003
    Location
    London, England.
    Posts
    10,304

    Default

    Yahoo has the silly habit of having very old urls in its database. If the urls in question do not exist any more, best thing is to set up a 404 page that forward requests to such pages to the most appropriate page.

    * Build a shopping cart for your business with eCommerce software UK
    * BossCart.com can build you a.
    Register your domain names at Velnet
    ::
    Add Eco sites to The Green Directory free of charge.
    Use LBS Free PHP Directory Script . Web Hosting Blog

  3. #3
    Jennifer Dallas is offline Junior Member Jennifer Dallas is on a distinguished road
    Join Date
    Mar 2009
    Posts
    3

    Default

    Will that actually stop Yahoo from indexing them quicker?

  4. #4
    Robdale is offline Senior Member Robdale is on a distinguished road
    Join Date
    Jan 2009
    Posts
    384

    Default

    have you submitted your updated sitemap to yahoo? If not then i suggest you to submit it.

  5. #5
    Jennifer Dallas is offline Junior Member Jennifer Dallas is on a distinguished road
    Join Date
    Mar 2009
    Posts
    3

    Default

    yes I've done that

  6. #6
    BlueBoden's Avatar
    BlueBoden is offline Member BlueBoden is on a distinguished road
    Join Date
    Nov 2008
    Posts
    72

    Default

    Quote Originally Posted by Jennifer Dallas View Post
    The web developers also tell me this is just caused by a stale cache but we are not convinced.

    Many thanks
    Jennifer
    I would check with your developers to make sure that they specified the new location. I.e.

    Simply throwing out a 301 response is not enough, because you need to inform where the page was moved as well, this is done like below.
    Code:
        header("HTTP/1.1 301 Moved Permanently");
        header('Location: ' . $Location['New']);
    This would ensure that you wouldn't lose visitors from those outdated URLs. You can then remove the redirect, when the traffic on those URLs had decreased.

    The way to check which URL was requested, is to use something like below.
    Code:
    $requested_path = $_SERVER['REQUEST_URI'];
    This can be used in an if statement, to throw out the correct response code, and relevant redirect. I.e.

    Code:
      if (preg_match("/^\/([A-Za-z]+)\/([0-9]+)\/$/D", $requested_path, $match)) {
        header("HTTP/1.1 301 Moved Permanently");
        header('Location: ' . $Domain['Name'] . $match[1] . '/' . $UrlConstruct . '_' . $match[2] . '.html');
    }
    The above is an example from one of my own websites, just to show that you can use regular expressions, to match old URL patterns. The pattern would match urls like "/Tutorials/xx/", and redirect it to the optimized version, where "xx" is the unique PostID. You can include else if statements to match other patterns.
    Last edited by BlueBoden; 06-11-2009 at 05:26 PM.

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Bookmarks

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124