/* 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,都提示无法加载模块,请问是那里配置有问题吗? 最佳答案