Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ホスト名に「aaa」を含むユーザー グループ A を url.com/a/ にリダイレクトし、ホスト名に「bbb」を含むユーザー グループ B を url.com/b/ にリダイレクトするという考え方です。
ヒントをいただければ幸いです。
<?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 } ?>
これにより、a フォルダーにいるユーザーが b フォルダーにリダイレクトされます。