我正在尝试在Codeigniter中创建动态URL。我的关注网址运行正常
URL中的tags
是静态值,而user-interface
是动态值。但是当我单击“分页的下一步”按钮时,URL如下
并给出404 pages not found error
我为此所做的尝试
$route['tags/(:num)'] = 'tags/index/$1';
$route['tags/(:any)'] = 'tags/view/$1';
答案 0 :(得分:2)
这应该有效,
$route['tags/(:any)'] = 'tags/index/$1';
$route['tags/(:any)'] = 'tags/view/$1';
$route['tags/(:any)/(:num)'] = 'tags/index/$1/$2';
$route['tags/(:any)/(:num)'] = 'tags/view/$1/$2';
和方法参数应具有
public function index($type, $id='')
public function view($type, $id='')
否则请确保,这将引发错误。
您在$1
不接受的关键路线中添加了CI
。