Url規則:
urlmanager配置為應用程式元件在[[yii aseApplication]]。你可以透過Yii存取實例:Yii::$app->urlManager
您可以透過新增一個陣列到您的應用程式設定下的「components」中,範例如下:
'urlManager' => [ 'enablePrettyUrl' => true, 'rules' => [ // your rules go here ], // ... ]
rules規則舉例:
[ 'dashboard' => 'site/index', 'POST <controller:w+>s' => '<controller>/create', '<controller:w+>s' => '<controller>/index', 'PUT <controller:w+>/<id:d+>' => '<controller>/update', 'DELETE <controller:w+>/<id:d+>' => '<controller>/delete', '<controller:w+>/<id:d+>' => '<controller>/view', ]; rules' => [ // 为路由指定了一个别名,以 post 的复数形式来表示 post/index 路由 'posts' => 'post/index', // id 是命名参数,post/100 形式的URL,其实是 post/view&id=100 'post/<id:d+>' => 'post/view', // controller action 和 id 以命名参数形式出现 '<controller:(post|comment)>/<id:d+>/<action:(create|update|delete)>'=> '<controller>/<action>', // 包含了 HTTP 方法限定,仅限于DELETE方法 'DELETE <controller:w+>/<id:d+>' => '<controller>/delete', // 需要将 Web Server 配置成可以接收 *.digpage.com 域名的请求 'http://<user:w+>.digpage.com/<lang:w+>/profile' => 'user/profile',]
以上就是yii2.0 UrlManage連結url規則解析的內容,更多相關內容請關注PHP中文網(www.php.cn)!