Answer the question
In order to leave comments, you need to log in
How is the url of the 2nd level of nesting formed?
Right now in
Menu::widget([
$menu_item = [
['label' => 'Пункт меню', 'url' => 'pages/index']
// И порядка 5 пунктов контроллер/экшен
];
]);
// В config/main.php
'UrlManager' = [
'rule'=>[
'<controller:\w+>' => '<controller>\index'
];
];
<ul>
<li><a href="/pages/index">Пункт меню</a></li>
<li><a href="/контроллер/index">Пункт меню</a></li>
</ul>
Answer the question
In order to leave comments, you need to log in
just write
and you don’t need to specify it in the config, so
remove this one ... and it should work the way you want
, everything works fine for me
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question