You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
509 B
21 lines
509 B
7 years ago
|
<?php
|
||
|
|
||
|
/** @var array $params */
|
||
|
|
||
|
return [
|
||
|
'class' => 'yii\web\UrlManager',
|
||
|
'hostInfo' => $params['backendHostInfo'],
|
||
|
'baseUrl' => '',
|
||
|
'enablePrettyUrl' => true,
|
||
|
'showScriptName' => false,
|
||
|
'rules' => [
|
||
|
'' => 'site/index',
|
||
|
'<_a:login|logout>' => 'auth/<_a>',
|
||
|
|
||
|
'<_c:[\w\-]+>' => '<_c>/index',
|
||
|
'<_c:[\w\-]+>/<id:\d+>' => '<_c>/view',
|
||
|
'<_c:[\w\-]+>/<_a:[\w-]+>' => '<_c>/<_a>',
|
||
|
'<_c:[\w\-]+>/<id:\d+>/<_a:[\w\-]+>' => '<_c>/<_a>',
|
||
|
],
|
||
|
];
|