Всем здравствуйте! Решил часть с приложения вывести в отдельный модуль.
Модуль Block.
class BlockController extends Controller
{
/**
* Renders the index view for the module
* @return string
*/
public function actionIndex()
{
return $ this ->render('index');
}
public function actionCreate(){
}
Когда я захожу по ссылке /localhost/block, index-Action срабатывает.
Но когда я отправляю форму на actionCreate(), по url /block/create, выходит ошибка. Срабатывает только на /block/block/create
Вопрос:Как убрать повторный block из url?