小白兔晒黑了

导航

 

比如我的路由是  http://localhost/basic/web/?r=site/index

现在想改成   http://localhost/basic/web/site/index 的形式

第一步 在config/web/php里把urlManager的注释打开

'urlManager' => [
            'enablePrettyUrl' => true,
            'showScriptName' => false,
            'rules' => [
            ],
        ],

第二步 在basic\web目录下创建.htaccess文件

在里面复制如下内容

Options +FollowSymLinks
IndexIgnore */*
RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule . index.php

就可以了

 

posted on 2017-10-04 18:18  小白兔晒黑了  阅读(186)  评论(0编辑  收藏  举报