このリダイレクトは初めてなので、仕組みを知りたいですか? index.php というファイルがあり、サイト内の任意のディレクトリにアクセスしたい
index.php
<?php
if(empty($dir)){
include('includes/home.php');
}
if($dir=='profile'){
include('includes/profile.php');
}
elseif($dir=='settings'){
include('includes/settings.php');
}
else{
include('includes/404.php');
}
?>
URL は次のとおりです。
test 1. www.example.com/ - will view the include home.
test 2. www.example.com/settings - will view the include settings.
test 3. www.example.com/errorsample - will view the include 404 page.
そのコードを使用して index.php を作成する方法、.htaccess
またはそれがどのように機能するかのアイデアとそのサンプルコード。