ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
>[info] 请参考 http://www.yiiframework.com/doc-2.0/guide-runtime-routing.html ### 路由的原理 默认路由 site/index ### 创建URL ~~~ php use yii\helpers\Url; echo Url::to(['post/index']); echo Url::to(['post/view', 'id' => 100]); ~~~ ### URL静态化 frontend\config\main.php ~~~ [ 'components' => [ 'urlManager' => [ 'enablePrettyUrl' => true, 'showScriptName' => false, 'enableStrictParsing' => false, 'rules' => [ // ... ], ], ], ] ~~~