我的Codeigniter中有一个网址
http://localhost:64743/index.php/mybox?name=John
我希望它看起来像这样
http://localhost:64743/index.php/mybox/name/John
它是否可以?自定义URL如何在CodeIgniter中工作?
答案 0 :(得分:-1)
$route['mybox/(:any)'] = "mybox/index";
用户在配置文件夹的routes.php中提及代码,您将通过$ this-> uri-> segment(3)获得查询字符串值;和$ this-> uri-> seggment(4);
如需进一步协助,请检查
https://ellislab.com/codeigniter/user-guide/general/routing.html