|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?立即注册
x
YII2的urlManager基础应用
在配置文件的components中加入urlManager配置项- 'urlManager' => [
- 'enablePrettyUrl' => true,//启用路由
- 'enableStrictParsing' => false,//启用严格解析
- 'showScriptName' => false,//是否显示index.php true 为显示 false 为不显示
- //'suffix'=>'.html', //后缀
- 'rules' => [
- //'<action:\w+>'=>'site/<action>',
- ]
- ],
复制代码
.htaccess:- Options +FollowSymLinks
- IndexIgnore */*
- RewriteEngine on
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteCond %{REQUEST_FILENAME} !-d
- RewriteRule . index.php
复制代码 |
|