私は今、私はコントローラmycontroller
を取得リンクhttp://example.com/mycontroller/
上でクリックしたときに...すべてがここに正常に動作し、私は次のhtaccessRewriteBase - 私を同じディレクトリに誘導しますか?
RewriteEngine On
RewriteBase/
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+)$ index.php?controller=$1 [QSA,L]
と自分自身に小さなMVCを構築しています。
しかしhttp://example.com/mycontroller/
の内側に、私はhttp://example.com/mycontroller/mycontroller/edit/1
に私を導く、すなわちhttp://example.com/mycontroller/edit/1
さらにリンクを持っている(?)
どのようにすることができますか?どうすればこの問題を解決できますか?
人間が判読できるURLを使用しているだけでMVCにならないからです。 –
私はcodeigniterを使用していると思いますか? –