2014-02-05 88 views
-2

這個想法是將其主機名中帶有「aaa」的用戶組A重定向到url.com/a/ ,並將其主機名中帶有「bbb」的用戶組B發送到url.com/b/根據主機名重定向用戶

希望有任何提示!

回答

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文件夾。