When we migrated from a basic php driven website to this new blog style website for Coyol.net we needed to make sure we kept rankings for our pages. We did this by creating a permanent redirect for each page. The original website was really only 8 pages so it really wasn’t difficult to do at all.
Why is this important? Because by doing this we still get the traffic from our original pages AND the Search Engine spiders understand that those are old pages and they will filter them from the Search Results eventually. You’ll basically transfer your rankings from old page -> new page.
Here is the simple PHP redirect code that we used… Remove all content from original page/old page and replace it with this:
-
<?
-
header( "HTTP/1.1 301 Moved Permanently" ); //the original page was http://www.coyol.net/seo.php
-
header( "Location: http://www.coyol.net/search-engine-optimization-seo" );
-
exit();
-
?>
Watch how it works: http://www.coyol.net/seo.php
Posted under SEO/SEM, Web Design
This post was written by Coyol on September 12, 2008

I want to redirect from the URL above (I don’t have access to this site) to a new site. The new site has a HUGE URL. I want to keep the URL above. How do I permanently redirect when I don’t have access to the original site?
Thanks, useful post for redirects!
As far as I know you can’t if you don’t have access to it. If this was possible people would redirect traffic from all kinda of sites to their own. Sorry.
Thank Brother