Нет. В Link.php (функия function getCategoryLink)
Код:
$cats = array();
foreach ($category->getParentsCategories() as $cat)
if (!in_array($cat['id_category'], array(1, 2, $category->id)))//remove root, home and current category from the URL
$cats[] = $cat['link_rewrite'];
$params['categories'] = implode('/', array_reverse($cats));
В override/classes/Dispatcher.php (В скачаный Dispatcher с того поста без ид)
Код:
'category_rule' => array(
'controller' => 'category',
'rule' => '{categories:/}{rewrite}/',
'keywords' => array(
'id' => array('regexp' => '[0-9]+'),
'rewrite' => array('regexp' => '[_a-zA-Z0-9-\pL]*', 'param' => 'category_rewrite'),
'categories' => array('regexp' => '[/_a-zA-Z0-9-\pL]*'),
'meta_keywords' => array('regexp' => '[_a-zA-Z0-9-\pL]*'),
'meta_title' => array('regexp' => '[_a-zA-Z0-9-\pL]*'),
),
),
В Seo&Url поставить
{categories:/}{rewrite}/ вместо {categories:/}{id}-{rewrite}/
Сообщение отредактировано doubled 28-02-2013 10:18 ...