Posted: Tue 11. Sep 2007, 23:43
Nein Suchmaschinen delisten nicht.
Oliver
Oliver
The phpwcms support forum will help to find answers to your questions. The small but strong community is here since more than 10 years.
https://forum.phpwcms.org/
Code: Select all
<?php
if($aktion[0] == 0) {
header('HTTP/1.1 301 Moved Permanently');
if(strpos(PHPWCMS_URL, 'meinedomaine.biz')) {
// Go to my startpage for the domain X
headerRedirect('http://www.meinedomaine.biz/index.php?sonstwas');
exit;
}
if(strpos(PHPWCMS_URL, 'meinedomaine1.biz')) {
// Go to my startpage for the domain X
headerRedirect('http://www.meindomaine1.biz/index.php?sonstwas1');
exit;
}
if(strpos(PHPWCMS_URL, 'meinedomaine2.biz')) {
// Go to my startpage for the domain X
headerRedirect('http://www.meindomain.biz/index.php?sonstwas2');
exit;
}
// redirect to "default" -> Fallback if there is a Nth domain or what ever
headerRedirect('http://www.default.de');
}
?>
Code: Select all
headerRedirect('http://www.meinedomaine.biz/index.php?sonstwas', 301);
Code: Select all
header('HTTP/1.1 301 Moved Permanently');
Code: Select all
$phpwcms['allow_ext_init'] = 1;
Code: Select all
<?php
if($aktion[0] == 0) {
switch ($_SERVER["SERVER_NAME"]) {
case 'domain1.de':
header( "HTTP/1.1 301 Moved Permanently" );
headerRedirect('domain1.de/index.php?domain1');
break;
case 'www.domain1.de':
header( "HTTP/1.1 301 Moved Permanently" );
headerRedirect('www.domain1.de/index.php?domain1');
break;
case 'domain2.de':
header( "HTTP/1.1 301 Moved Permanently" );
headerRedirect('domain2.de/index.php?domain2');
break;
case 'www.domain2.de':
header( "HTTP/1.1 301 Moved Permanently" );
headerRedirect('www.domain2.de/index.php?domain2');
break;
case 'www.domain3.de':
header( "HTTP/1.1 301 Moved Permanently" );
headerRedirect('www.domain3.de/index.php?domain3');
break;
}
}
?>
Könnte google das sonst nicht als "doppelten" Content verstehen und dich dafür in den "Wald" verbannen?case 'domain1.de':
header( "HTTP/1.1 301 Moved Permanently" );
headerRedirect('domain1.de/index.php?domain1');
break;
case 'www.domain1.de':
header( "HTTP/1.1 301 Moved Permanently" );
headerRedirect('www.domain1.de/index.php?domain1');
break;
Ich habe leider keine Ahnung ob es wirklich ein Problem beim Listung in Suchmaschinen gibt, wenn ich auf die Domain 2x verweise (mit und ohne den Zusatz "www")pepe wrote: Könnte google das sonst nicht als "doppelten" Content verstehen und dich dafür in den "Wald" verbannen?
Ja, ich habe alle Domains providerseitig auf das selbe Verzeichnis der Domain gerichtet (in dem phpwcms installiert ist - also die index.php liegt).pepe wrote:Hast du für deine Lösung alle Domains "providerseitig" auf das selbe Verzeichnis deiner Domain gerichtet???