Answer the question
In order to leave comments, you need to log in
Why does this error "Setting unknown property: yii\web\UrlRule" occur?
I created the api folder in it in config/main.php, this rule
created a module in it and in the module the BonusController controller in it actionsGetBonus
'urlManager' => [
'enablePrettyUrl' => true,
'enableStrictParsing' => true,
'showScriptName' => false,
'rules' => [
[
'class' => 'yii\rest\UrlRule',
'controller' => ['v1/bonus'],
'extraPatterns' => [
'GET bonus' => 'get-bonus',
]
]
],
],
Answer the question
In order to leave comments, you need to log in
the error was that I called an array in an array like this for me
'rules' => [
[
'class' => 'yii\rest\UrlRule',
'controller' => ['v1/bonus'],
'extraPatterns' => [
'GET bonus' => 'get-bonus',
]
]
],
'rules' => [
'class' => 'yii\rest\UrlRule',
'controller' => ['v1/bonus'],
'extraPatterns' => [
'GET bonus' => 'get-bonus',
]
],
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question