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

关于Yii2.0的url路径优化问题(配置虚拟路径)

时间:2017-07-07 18:24:47      阅读:273      评论:0      收藏:0      [点我收藏+]

标签:url   rect   tee   路径   style   yml   show   问题   htaccess   

backend/config/main.php

‘urlManager‘ => [

    ‘enablePrettyUrl‘ => true,
    ‘showScriptName‘ => false, 
    ‘enableStrictParsing‘ => false,
    ‘suffix‘ => ‘.html‘,
        ‘rules‘ => [
            ‘<controller:\w+>/<id:\d+>‘ => ‘<controller>/view‘,
        ],
],

如果在web文件夹下增加一个.htaccess文件,配置如下:

Options +FollowSymLinks 

IndexIgnore */* 

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

 

关于Yii2.0的url路径优化问题(配置虚拟路径)

标签:url   rect   tee   路径   style   yml   show   问题   htaccess   

原文地址:http://www.cnblogs.com/lucky-man/p/7133404.html

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