View Single Post

  #2 (permalink)  
Old 21-07-2006, 09:09 AM
louie's Avatar
louie louie is offline
Senior Member
 
Join Date: Jan 2006
Location: Dublin, Ireland
Posts: 2,040
Nominated 5 Times in 3 Posts
Nominated TOTW/F/M Award(s): 1
louie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enough
Send a message via Yahoo to louie Send a message via Skype™ to louie
Default

yes indeed, google is very fusy about duplicated content.

You can use domain pointer for the second one going to the main one, and on and when it gets there, run a 301 moved permanently redirect script.

Not sure how good this is regarding google, but might help.

there is a script i am using to redirect 3 domain to the main one:

Code:
//check if .com and redirect to .ie
$url_string = $_SERVER['HTTP_HOST'];
if(stristr($url_string, '.com') || stristr($url_string, '.eu') || stristr($url_string, '.co.uk')) {
   header("HTTP/1.1 301 Moved Permanently");
 header("Location: http://www.domain.ie".$_SERVER['REQUEST_URI']);
 exit();
}
//end of domain check
__________________
:. Web Design & Development Web Design Ireland
:. Search Engines Optimization Search Engines Optimization
:. Directory Submission Directory Submission
:. News & Press Release Ireland GiveItSocks.com
:. Used Cars Ireland, Car Parts & Car Audio Cars For Sale, Car Parts & Accessories
:. I Have 2 Find It Directory SEF Directory

Last edited by louie; 21-07-2006 at 09:11 AM.
Reply With Quote