如果我有这样的表格:
<form method="GET">
<input type="text" name="search" />
</form>
如果我提交它,它会生成一个这样的 URL:http://exmaple.com/search/results?search=text1+text2
现在这不适用于我的代码。如何让它使用 URI 段,所以生成的 url 如下所示:http://exmaple.com/search/results/search/text1+text2
更多澄清
换句话说,我想要的是,当我使用简单的 html 表单执行获取请求时,它生成的 url 看起来像 codeigniter 的 URL example.com/class/function/param1/param2
,而不是example.com/class/function?param1¶m2