私は基本的に私のページに行くために、以下のコードを使用します。どのように動作するのですか?index.php?req=pagename
を入れて、保護されたフォルダをチェックして、そこにファイルがあるかどうかを確認します。私はあなたがきれいな動的URLをしたい場合は、POSTを使用する代わりに取得する必要があります、それはすべてのことindex.php?req=pagename
を示しdoesntのようにモッズ書き換えを必要とちょうど/pagename
htacess url書き換えますか? PHPのgetシステム
require_once("protected/header.php");
if (isset($_GET['req'])) {
$req = $_GET['req'];
} else {
$req = "overall";
}
require_once("protected/$req.php");
require_once("protected/footer.php");
Googleはあなたの友達です:http://www.workingwith.me.uk/articles/scripting/mod_rewrite – Erik