路由配置失效

浏览:2452 发布日期:2013/08/19 分类:求助交流 关键字: 路由
    /* URL设置 */
    'URL_CASE_INSENSITIVE'  => true,   // URL地址是否不区分大小写
    'URL_ROUTER_ON'         => true,   // 是否开启URL路由
    'URL_ROUTE_RULES'       => array(
                'blog/:' => 'blog/index/index/index',
                'blog/:register' => 'blog/user/register',
                'blog/topic:id\d' => 'blog/topic/read',
                //'/^c_(\d+)$/' => 'blog/topic/read/id?id=:1',
                'blog/p:id\d' => 'blog/index/index/index/p',
    ),
前台如访问blog/topic/1,blog/register,都提示无法加载模块,请问是那里配置有问题吗?
最佳答案
评论( 相关
后面还有条评论,点击查看>>