Heim > Artikel > PHP-Framework > yii2-Routing-Konfiguration
Die Routing-Konfiguration ist wie folgt:
(Empfohlenes Tutorial: 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>', ), ),
Für weitere programmierbezogene Inhalte Bitte beachten Sie die Rubrik Einführung in die Programmierung auf der chinesischen PHP-Website!
Das obige ist der detaillierte Inhalt vonyii2-Routing-Konfiguration. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!