我是新的重定向,我想知道它是如何工作的? 我有一些所謂的index.php文件,我想hadlle任何目錄中的網站PHP .htacces和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');
}
?>
的網址是:
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.
如何使.htaccess
,並使用該代碼的index.php或任何想法如何工作和它的示例代碼。
爲什麼它不起作用? .htacces #BEGIN WordPress的 RewriteEngine敘述在 重寫規則^(。*)$ /index.php?x=$1 [L] #END WordPress的 的index.php
–Wordpress有這種類型的導航自己的'.htaccess'文件。它可能有其他規則來覆蓋我的規則。 – Starx