codeigniter
http:tt.cn/index.php/pub/index/1234
因为是index方法,想用:
http:tt.cn/index.php/pub/1234
提示404
猜想可能是在url中省略index()方法时,不能使用参数
如果是:
http:tt.cn/index.php/pub/index
则可以访问,只是提示参数错误。
所以要在application/config/routes.php下增加:
$route['pub/(:num)']='pub/index/$1';
网友评论