Experiences with PHP redirects

7 replies
  • SEO
  • |
<?php

header('HTTP/1.1 301 Moved Permanently');

header('Location: http://www.site.com/newpage');

?>

I've heard from at least one SEO professional that a php redirect file like the one shown here is risky to use (in his words, there were "mixed results" in terms of transferred link equity). I'd like a second opinion; if you've used php redirects, how well did they work for you?

Thanks
#experiences #php #redirects

Trending Topics