在我的index.php中,我根據操作參數控制需要哪個模板。index.php控制器檢查路徑而不是動作參數
$action = isset($_GET['action']) ? $_GET['action'] : "";
在我的其他頁面中,我在href中指定了該操作。
<a href=".?action=post&postId=<?php echo $post->id?>">
當您將鼠標懸停在鏈接,它會告訴你像
...?action=post&postId=101
但我不想表現出來這樣的。相反,我想表明它像
.../post/101
而且在href,我還挺使用
<a href="./post/<?php echo $post->id?>">
我的問題是,那麼我將如何能夠處理它在index.php
maybe [this](http://stackoverflow.com/questions/20563772/reference-mod-rewrite-url-rewriting-and-pretty-links-explained?rq=1)可以幫助 – roullie
所以這意味着我可以保持我的index.php的實現,只需更新.htaccess文件? – iPhoneJavaDev
是的,你可以保持你的執行 – roullie