我正在尝试在 CodeIgniter 上创建一个匹配 3 个数字后跟连字符后跟任何内容的路由。到目前为止,我的运气为零。我尝试了以下方法:
$route['([0-9]+)-([a-zA-Z0-9]+)'] = 'product/index/$1';
$route['([0-9]+)([a-zA-Z0-9-]+)'] = 'product/index/$1';
$route['(:num)-(:any)'] = 'product/index/$1';
$route['([0-9]{3})-(:any)'] = 'product/index/$1';
$route['(\d{3})-(:any)'] = 'product/index/$1';
等等。有谁知道我该怎么做?