码迷,mamicode.com
首页 > Web开发 > 详细

Yii2.0 URL美化

时间:2015-12-19 17:53:03      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:

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

Yii2.0 URL美化

标签:

原文地址:http://www.cnblogs.com/yangyuqiu/p/5059463.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!