Размер файла: 958B
<?php
return array('showScriptName' => false,
'urlFormat' => 'path',
'rules' => array(
'<module:\w+>/<controller:\w+>/<action:\w+>' => '<module>/<controller>/<action>',
'<module:\w+>/<controller:\w+>/<action:\w+>-<id:\d+>' => '<module>/<controller>/<action>',
'downloads/<action:\w+>-<id:\d+>' => 'downloads/index/<action>',
'<controller:\w+>/<action:\w+>' => '<controller>/<action>',
'<controller:\w+>/' => '<controller>/index',
'user/profile-<profile:\d+>' => 'user/profile',
'pages/<page_id:\d+>-<page_name:(.*)>.html' => 'index/page',
'news/article-<id:(.*)>' => 'news/index/article',
'news/category-<id:(.*)>' => 'news/index/category',
'news/edit-<id:(.*)>' => 'news/index/edit',
'news/editcat-<id:(.*)>' => 'news/index/edit_category',
'news/comments-<id:(.*)>' => 'news/index/comments',
'forum/<action:\w+>-<id:(.*)>' => 'forum/index/<action>',
),
);