0

用户指南中有这样的内容

(:num) will match a segment containing only numbers.

所以我这样做

//using wildcard
$route['tool/reply/(\d+)'] = "tool/reply/$1";
//or using regx like this
//$route['tool/reply/(:num)'] = "tool/reply/$1";

但它不仅匹配数字,还匹配字符串。发生了什么?我错过了什么?

4

1 回答 1

1

尝试将您的功能tool/reply设置为tool/reply_numeric. 它可能会感到困惑,只是路由到您的控制器并跳过您的路由。

于 2012-10-23T03:59:11.087 回答