我们的想法是将主机名中带有“aaa”的用户组A重定向到url.com/a/ 并将用户组B的主机名中带有“bbb”发送到url.com/b /
会感激任何提示!
答案 0 :(得分:0)
<?php
$path = $_SERVER["DOCUMENT_ROOT"];
//This will get the path where the user is
if($path == "a"){
Header("Location: http://url.com/b/");
//this will redirect the user to b folder
}
?>
这会将文件夹中的用户重定向到b文件夹。