网站地图    收藏   

主页 > 后端 > yii教程 >

YII URL重写(开启伪静态)

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

[导读] 目标:把这个url重写成下面那种 http://localhost/yii/index.php?r=site/login http://localhost/yii/site/login 一、确定你的apache有rewrite模块,可以通过phpinfo()来查看。 没有怎么办?自己百度 二、编辑y...

目标:把这个url重写成下面那种

http://localhost/yii/index.php?r=site/login

http://localhost/yii/site/login

一、确定你的apache有rewrite模块,可以通过phpinfo()来查看。

没有怎么办?自己百度

二、编辑yii的配置文件 main.php

找到

1
2
3
4
5
6
7
8
9
10
/*
 'urlManager'=>array(
 'urlFormat'=>'path',
 'rules'=>array(
 '<controller:\w+>/<id:\d+>'=>'<controller>/view',
 '<controller:\w+>/<action:\w+>/<id:\d+>'=>'<controller>/<action>',
 '<controller:\w+>/<action:\w+>'=>'<controller>/<action>',
 ),
 ),
 */

把注释去掉

现在应该可以看到效果了,但是还是有写瑕疵,我们要吧入口文件index.php去掉

三、在网站根目录新建一个文件.htaccess

1
2
3
4
5
6
7
8
9
<IfModule rewrite_module>
Options +FollowSymLinks
IndexIgnore */*
RewriteEngine On
 
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php
</IfModule>

ok虽然去掉index.php也不报错,但是默认路径还是带了index.php

最后一步,更改配置文件main.php

找到

1
'urlFormat'=>'path',

在它下面增加

1
'showScriptName'=>false,

大功告成!!

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

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

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

添加评论