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
557 B
21 lines
557 B
<?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>', |
|
|
|
/* Moved to end of bootstrap - SetUp.php |
|
'<_c:[\w\-]+>' => '<_c>/index', |
|
'<_c:[\w\-]+>/<id:\d+>' => '<_c>/view', |
|
'<_c:[\w\-]+>/<_a:[\w-]+>' => '<_c>/<_a>', |
|
'<_c:[\w\-]+>/<id:\d+>/<_a:[\w\-]+>' => '<_c>/<_a>',*/ |
|
], |
|
];
|
|
|