ホームページ > 記事 > PHPフレームワーク > yii2 ルーティング構成
ルーティング構成は次のとおりです:
(推奨チュートリアル: yii Framework)
'urlManager'=>array( //'showScriptName' => true,//将url中的index.php隐藏掉 //'urlSuffix' => '.html',//开启伪静态 'urlFormat'=>'path',//path:参数以‘/‘提交;get:参数以 ’&‘提交 'caseSensitive' => true,//路由是否区分大小写 'rules'=>array( '<controller:\w+>/<id:\d+>'=>'<controller>/view', '<controller:\w+>/<action:\w+>/<id:\d+>'=>'<controller>/<action>', '<controller:\w+>/<action:\w+>'=>'<controller>/<action>', ), ),
その他のプログラミング関連コンテンツについては、 、PHP 中国語 Web サイトの プログラミング入門 コラムにご注目ください。
以上がyii2 ルーティング構成の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。