我想在CodeIgniter上創建一個匹配3個數字的路由,後跟一個連字符,後面跟着任何東西。到目前爲止,我沒有運氣。我試過以下內容:CodeIgniter的路由和正則表達式
$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';
依此類推。有誰知道我該怎麼做?
爲什麼你在同一頁面有5條路線? –
這些都是我嘗試過的。 – beaudierman