change search item url and routing in codeigniter
问题 I want to change the URL with Codeigniter routing: here is my url: home/search?location=BD home/search?location=BD&category[]=123 home/search?location=BD&category[]=123&category[]=124&category[]=125 like above url but I want to routing this url with home/BD home/BD/123 home/BD/123+124+125 or home/BD/123/124/125 My route.php : $route['home/(:any)/(:any)'] = 'home/search/$1'; What is my problem in route.php page? 回答1: Try to use a (.+) pattern on your route.php , the $1 will contain the