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

Yii2 url地址美化与重写

时间:2018-02-08 13:40:16      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:tac   pretty   pos   重写   yii2   directory   lin   enables   inf   

技术分享图片

main.php中’components‘=>[] 中添加如下代码:

‘urlManager‘ => [
            ‘enablePrettyUrl‘ => true,
            ‘showScriptName‘ => false,//隐藏index.php
//            ‘enableStrictParsing‘ => false,
            ‘suffix‘ => ‘.html‘,//后缀,如果设置了此项,那么浏览器地址栏就必须带上.html后缀,否则会报404错误
            ‘rules‘ => [
            ],
        ],

添加.htaccess文件:

Options +FollowSymLinks
    IndexIgnore */*
    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 url地址美化与重写

标签:tac   pretty   pos   重写   yii2   directory   lin   enables   inf   

原文地址:https://www.cnblogs.com/zjj1990/p/8430993.html

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