Nieuw lid |
|
Goedemorgen,
Laatst werd ik perfect geholpen met mijn probleem, ik wou dat mensen uit Nederland automatisch werden doorverwezen naar de Nederlandse site. En het zelfde voor Franse mensen naar de Franse site. De algemene site is engels [.com]. Dit was de code:
<?php
$host = gethostbyaddr( $_SERVER['REMOTE_ADDR'] ); // Host ophalen d.m.v. het ip adres
if( $host == $_SERVER['REMOTE_ADDR'] )
{
// De host is hetzelfde als het ip adres dus land is Onbekend
return "Onbekend";
}
$hostsplit = explode( ".", $host ); // Hak de host in stukjes op de punt
$ext = array_pop( $hostsplit ); // Pak het laatste item
if($ext=="nl" OR $ext=="be" OR $ext=="fr") {
header('Location: http://www.domein.'.$ext);
}else{
header("Location:http://www.domein.com");
}
?>
<?php $host = gethostbyaddr( $_SERVER['REMOTE_ADDR'] ); // Host ophalen d.m.v. het ip adres if( $host == $_SERVER['REMOTE_ADDR'] ) { // De host is hetzelfde als het ip adres dus land is Onbekend return "Onbekend"; } $hostsplit = explode( ".", $host ); // Hak de host in stukjes op de punt $ext = array_pop( $hostsplit ); // Pak het laatste item if($ext=="nl" OR $ext=="be" OR $ext=="fr") { header('Location: http://www.domein.'.$ext); }else{ header("Location:http://www.domein.com"); } ?>
Deze code plaatste ik op de [.com] site. Echter welke code moet ik nu plaatsen op de Nederlandse site? Want ik wil niet dat engelse op de Nederlandse site komen, die moeten automatisch naar de [.com] site.
Alvast bedankt
|