Yii2.0 URL美化

1. 程序初始化注册文件,加入如下:

'urlManager' =>[            

'class' => 'yii\web\UrlManager',

 'showScriptName' =>false,     

 'enablePrettyUrl' => true,            

        ]

 

2. 入口同级目录增加 .htaccess,内容如下

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

posted @ 2015-12-19 17:34  Yeah,程序猿  阅读(225)  评论(0)    收藏  举报