This question has already been answered:
How to make links instead of the form
category / album? id = 10
View links -
category / album / 10
I understand you need to configure urlManager in the config, but how?
This question has already been answered:
How to make links instead of the form
category / album? id = 10
View links -
category / album / 10
I understand you need to configure urlManager in the config, but how?
A similar question was asked earlier and an answer has already been received. If the answers provided are not exhaustive, please ask a new question .
Maybe you will need someone
'urlManager' => [ 'enablePrettyUrl' => true, 'showScriptName' => false, 'rules' => [ '<controller:\w+>/<id:\d+>' => '<controller>/view', '<controller:\w+>/<action:\w+>/<id:\d+>' => '<controller>/<action>', '<controller:\w+>/<action:\w+>' => '<controller>/<action>', ], ], enablePrettyUrl => true ....... what is written in the answer I gave you - Alexey ShimanskySource: https://ru.stackoverflow.com/questions/546268/
All Articles