//路由設置(短鏈接設置)
 'URL_ROUTER_ON' => true,
 'URL_ROUTE_RULES' => array(
 'log' => 'Login/index',
 'admin' => 'Login/admin',
 'reg' => 'Login/register',
'c/:id' => 'Index/index/user'
'/^C_(\d+)$/' => 'Index/index/user?id=:1'
 ),
長鏈接:http://localhost/index.php/'Index/index/user/c/9
縮短成以下:
短鏈接:http://localhost/index.php/c/9
短鏈接:http://localhost/index.php/C_9
