0
非常簡單。我如何轉換這一點:
index.php/person/byAge?age=5 or index.php/person/byAge (with $_POSTed data)
這樣:
index.php/person/byAge/5
我使用笨2.1.3
非常簡單。我如何轉換這一點:
index.php/person/byAge?age=5 or index.php/person/byAge (with $_POSTed data)
這樣:
index.php/person/byAge/5
我使用笨2.1.3
爲了您的具體問題,您應該不需要編輯的.htaccess(如果您很高興仍然在您的網址中包含index.php)。看看Codeigniter uri類here
他們的文檔是關於IMO框架的最好的東西,並且可以解釋任何這種情況,遠遠超過我的能力。
特別留意該命令:
$this->uri->segment();
此功能允許您返回URL的特定部分。所以在你的情況下,你會調用人員控制器的byAge方法。調用$ this-> uri-> segment(3);將返回5.
看看Url的路由和取決於所需的網址你也可能需要改變你的.htaccess http://ellislab.com/codeigniter/user-guide/general/routing.html – redGREENblue 2013-02-19 14:57:32
我們可以假設人作爲控制器,並通過年齡作爲查看文件...... – 2013-02-19 15:08:36