答案 0 :(得分:1)
阅读这篇文章www.askaboutphp.com/58/codeigniter-mixing-segment-based-url-with-querystrings.html
创建这样的网址:http://heloo.com/article/codeigniter-based-url 在routes.php中添加此代码
$route['article/(:any)'] = "article/readmore/$1";
描述:
答案 1 :(得分:1)
实际上你有两个选择
1)使用路由(这个已经讨论过denyptw了吗?)
2)使用URL Helper url_title函数
注意:您可以使用参数而不是查询字符串
http://localhost/picker2/web/search?category=doctor
http://localhost/picker2/web/search/doctor/
网页控制器,搜索功能,医生参数
示例:
class Web extends CI_Controller
{
public function search($value)
{
//use this $value in your searching logic
}
}
您需要URL Helper的示例
点击此链接Codeigniter URL: How to display id and article title in the URL
答案 2 :(得分:0)