Forum Moderators: phranque
Examples of the same page:
duplicate 1 : [domain.com...]
duplicate 2 : [domain.com...]
Main page--> duplicate 3 : [domain.com...]
My site is suffering a real HARD Google Penalty now :(.
Would a redirect with the php function Header() function like a 301?
Should I use a php header function to send the duplicate pages to the main page (duplicate 3)?
Hope this is clear, it's 4:30 AM where I am...
Jim
<?php
// Permanent redirection
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.example.com/");
exit();
?>
Since this is very important, it worth asking if anyone disagrees with this example...?
ASP 301 technique is also mentioned
[edited by: jdMorgan at 4:26 am (utc) on July 7, 2005]
[edit reason] Removed URL per Terrms of Service. [/edit]