网站地图    收藏   

主页 > 后端 > yii教程 >

YII URL 伪静态设置2

来源:未知    时间:2014-12-13 18:49 作者:xxadmin 阅读:

[导读] 主要实现这样的url : http://localhost:84/site/contact.html 配置方法:在config/main.php中的components数组中添加 //URL管理 urlManager=array( urlFormat=path, showScriptName = false, //去除index.php urlSuffix=.html, //加...

主要实现这样的url : http://localhost:84/site/contact.html 

配置方法:在config/main.php中的‘components’数组中添加
 
//URL管理
        'urlManager'=>array(
            'urlFormat'=>'path',
            'showScriptName' => false, //去除index.php
            'urlSuffix'=>'.html', //加上.html
            'rules'=>array(
                'pattern1'=>'route1',
                'pattern2'=>'route2',
                'pattern3'=>'route3',
            ),
        ),
 
然后创建.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
 
 
 
 
 

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论