yii2-url美化

  1. nginx
1
2
3
4
location / {
try_files $uri $uri/ index?$args
}

  1. config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# common/config/main.php

'components' => [
'urlManager' => [
'enablePrettyUrl' => true,
'showScriptName' => false,
'rules' => [
'<controller:(index|cart|order)>' => '<controller>/index',
'auth' => 'memeber/auth',
'post-<postid:\d+>' => 'post/detail',
[
'pattern' => 'newurl',
'route' => 'admin/default/index',
'suffix' => '.html'
]
]
]
]