Удаление трейлинга index
из Yii Url, измените действие show category с ongSpcl#index
на что-то другое, затем добавьте '/ongSpcl' => 'ongSpcl/index'
,
'urlManager'=>array(
'urlFormat'=>'path',
'rules'=>array(
'/ongSpcl' => 'ongSpcl/index',
'/ongSpcl/<category:.*?>'=>'ongSpcl/show',
),
),
Заглушка для тестирования маршрутов
class RoutingTest extends CTestCase {
public function createUrl($route, $params=array()) {
$url = explode('phpunit', Yii::app()->createUrl($route, $params));
return $url[1];
}
public function testCorrectRoutes() {
$this->assertEquals('/ongSpcl', $this->createUrl('ongSpcl/index'));
$this->assertEquals('/ongSpcl/sp1', $this->createUrl('ongSpcl/show', array('category' => 'sp1'));
//
}