yii2如何优化URL的路径

// 以下以basic版本为例

1.修改config/web.php

'components' => [     

     #code ...

     'urlManager' => [

    'enablePrettyUrl' => true,     

    'showScriptName' => false,
     ],

#code ...

]

 

2.在和入口文件相同目录下加入.htaccess文件

.htaccess内容:

RewriteEngine on
# If a directory or a file exists, use the request directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Otherwise forward the request to index.php
RewriteRule . index.php

 

 

 

 

来自于datou:https://github.com/datou-leo/ci

posted @ 2015-06-09 11:24  开源  阅读(166)  评论(0编辑  收藏  举报