美文网首页
Codeigniter中控制器默认方法index省略的设置

Codeigniter中控制器默认方法index省略的设置

作者: 石头五 | 来源:发表于2017-09-08 22:10 被阅读0次

    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';

    相关文章

      网友评论

          本文标题:Codeigniter中控制器默认方法index省略的设置

          本文链接:https://www.haomeiwen.com/subject/rswnjxtx.html