Rumah > Artikel > rangka kerja php > yii2路由配置
路由配置如下:
(推荐教程:yii框架)
'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中文网编程入门栏目!
Atas ialah kandungan terperinci yii2路由配置. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!