3 top-level domain names
Different domain names, I want to automatically go to different subdirectories.
Please give me some advice, how to write the PHP code for this homepage?
排骨2020-02-18 08:43:28
Stupid method
$_http = $_SERVER['HTTP_HOST'];
if($_http == 'www.123.com'){
header("LOCATION:http://www.123.com/doc");
}elseif($_http == "pass"){
// Same as above
}elseif(xxxx){
//Same as above
}else{
echo "Incorrect address input";
}