Answer the question
In order to leave comments, you need to log in
Rule for urlManager
There are aliases - categories of goods (for example, food, shoes), as well as aliases of information pages (about, contact).
From rules
'rules' => [
...
'<alias:.+>' => 'catalog/sectionByAlias',
'<page:.+>' => 'page/PageByAlias'
],
Answer the question
In order to leave comments, you need to log in
<alias:.+>
and <page:.+>
are the same url. <page:.+>
will never work, because The 1st satisfying condition will be <alias:.+>
. The rules can be clarified and changed in places:
'<page:(about|contact)>' => 'page/<page>',
'<alias:\w+>' => 'catalog/<alias>'
/catalog/categoryname
. Such urls are more readable and understandable.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question