Hi there, Everyone:
I had a page that used to get about 150 unique views a day, but after moving from a static html page to a wordpress page about a month ago (and having a bad 301 redirect* in place for the first week) it has yet to regain that traffic. (All my other redirects seem to be receiving the same amount of traffic as before.)
I wonder what the best method of regaining that traffic might be? I am tempted to delete the redirect and just put the old page back up. However, I worry that would just confuse google (and let's admit it; google seems confused enough as it is right now).
thanks in advance for your suggestions.
*When I say a "bad" redirect, I had the wrong syntax in my php redirect header. Instead of:
<?php
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://www.mydomain.com/blog/my-new-page/" );
?>
I left out the Location: part, so it only looked like this:
<?php
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "http://www.mydomain.com/blog/my-new-page/" );
?>
When I tested in fetch as googlebot and live http headers, it said it was a correct 301 redirect. When I went to the old page in FireFox, it redirected properly, but when i went to the old page in Internet Explorer 8, it gave a 500 error.
.
[edited by: Robert_Charlton at 9:48 pm (utc) on May 6, 2012]
[edit reason] disabled auto-link so url will display [/edit]