yii2.0如何優化路由
阿新 • • 發佈:2017-10-04
tac con tty enable gin 2.0 sym yml dex
比如我的路由是 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
就可以了
yii2.0如何優化路由