![]() | |
| |||
| I've heard that if you have 2 or more domains, and they either point to eachotehr, or have exactly the same content, google etc will rank them lower. Anyone know how I can get around this? I want a .com, and a .ie with differnt names. One is the company name and one is a kind of slogan for branding. I was told that you can have the 2 different sites, change some text slightly and as long as google cannot tell they are idential, you can get away with it. |
| ||||
| 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. |
| Thread Tools | |
| Display Modes | |
|
|
| | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Can you buy domain names with keywords and then redirect to you site? | Ecologikids | Search Engine Optimisation | 9 | 24-07-2006 10:34 PM |
| Domain Transfer Issue | fieldcorbett | Domains and domaining | 1 | 03-04-2006 06:55 PM |
| Domain names - good or bad | ph3n0m | Domains and domaining | 13 | 14-03-2006 01:46 PM |
| .ie domain names | mowd | Domains and domaining | 2 | 22-02-2006 10:46 PM |