Help! ASP to PHP losing 10k visitors a week-NEED HELP

Discussion in 'PHP' started by gropius, Oct 12, 2007.

  1. #1
    Old story, Profitable Web business 5 years, our outsourced company was shutting down, wanted to upgrade to PHP, Hired new company, Promised not to lose all our existing links, went live first 3 months lost 75% of our business, FIRED them $#@!
    Joined DP. And started turned things around ourselves.
    3 month later got all controls back from $#@!
    We now see, at least 10,000 visitors a week are getting error pages when using links set up over the years.
    The single largest is the www.BLA BLA BLA.com/index.asp
    We now have PHP on a Linux server, and the hosting company is not supplying any help, there has to be a redirect.
    We can not be the first with this problem?
     
    gropius, Oct 12, 2007 IP
  2. noppid

    noppid gunnin' for the quota

    Messages:
    4,246
    Likes Received:
    232
    Best Answers:
    0
    Trophy Points:
    135
    #2
    Use 301 redirects. Look at the logs. Find bad URL. Redirect bad URL to good URL.
     
    noppid, Oct 12, 2007 IP
    Mia likes this.
  3. zenglider

    zenglider Peon

    Messages:
    18
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    You can use a mod_rewrite to redirect any calls to ASP pages to the new PHP pages.
     
    zenglider, Oct 12, 2007 IP
  4. gropius

    gropius Peon

    Messages:
    126
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Is the 301 redirect and Mod_rewrite you speal about from OSC ultimate SEO or do you have another source, I need a road map and instructions on how to do this I am losing $1k a day THANKS
     
    gropius, Oct 12, 2007 IP
  5. Gordaen

    Gordaen Peon

    Messages:
    277
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    0
    #5
    If you are using apache, you can setup the config or htaccess file with 301's formatted like this:

    redirect 301 /oldpage.asp /newpage.php

    A good option as well is to create your custom 404 page that can intelligently redirect. For instance, if a person gets there looking for "blah.asp," the file can check if (file_exists("blah.php")) and forward the person if it does. If it doesn't exist, you can search the directory based on the filename without the extension to look for something relevant or you could run your own site search to find the most likely result.

    If this issue is causing that kind of monetary loss, you should just hire a competent developer to check your logs and create redirects. It's an easy process.
     
    Gordaen, Oct 12, 2007 IP
  6. TechEvangelist

    TechEvangelist Guest

    Messages:
    919
    Likes Received:
    140
    Best Answers:
    0
    Trophy Points:
    133
    #6
    A properly executed 301 redirect will also tell the search engines to change the URL in their index. This way, you should retain the traffic and the 404s will stop once all of the URLs have been updated in the search eingines. That process can take 6 months of more.
     
    TechEvangelist, Oct 14, 2007 IP
    Mia likes this.
  7. gropius

    gropius Peon

    Messages:
    126
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #7
    We are doing a you say THANK YOU
     
    gropius, Oct 15, 2007 IP