无法访问codeigniter

时间:2017-12-28 13:38:55

标签: php codeigniter parameters uri

在控制器中通过参数获取uri段的最佳方法是什么?我使用了以下代码但没有工作

uri as

  

http://localhost/home/23

class Home extends CI_Controller
{


   public function index($para){
    echo $para;
   }
}

以上uri导致404页面找不到错误。如何解决此类问题并在索引函数中获取id作为参数。

1 个答案:

答案 0 :(得分:2)

您可以在routes.php文件中编写路由。

文件路径:application/config/routes.php

$route['home/(:any)'] = 'home/index/$1';

OR

$route['home/index/(:any)'] = 'home/index/$1';

我希望它会有所帮助。