[置顶] Yii 1.0 伪静态即Yii配置Url重写
来源:程序员人生 发布时间:2014-11-05 08:14:37 阅读次数:2878次
今天学习那个yii的时候,觉得URL太麻烦,想自己配置1下,因而就百度了1下,然后自己总结下,留着后面配置的时候看看。
yii框架中有个很重要的组件:URL Management(网址管理)
进行yii伪静态就是只需要配置这个就能够了。
没有配置之前是这个模样的:
配置成功后的URL就是这样的:
第1步:配置URL Management(网址管理)
只需要在config文件夹下面的main.php文件中进行配置就行了
'components' => array(
'urlManager' => [
'showScriptName' => false,//这里是隐藏index.php那个路径的
'urlFormat' => 'path',
'rules' => [
'<controller:w+>/<id:d+>' => '<controller>/view',
'<controller:w+>/<action:w+>/<id:d+>' => '<controller>/<action>',
'<controller:w+>/<action:w+>' => '<controller>/<action>'
]
],
'user' => array(
// enable cookie-based authentication
'allowAutoLogin' => true
),<span style="font-family: Arial, Helvetica, sans-serif;">)</span>
第2步:进行apache配置
yii中有个文件:.hthttp://www.wfuyu.com/access/ 用来专门配置apachehttp://www.wfuyu.com/server/的,这个文件下面配置输入下面的代码
<IfModule mod_rewrite.c>
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
</IfModule>
这个文件配置好了以后,1定要把apache中的rewrite模块开启:
然后就OK了。
全部URL的配置就已完成了。
生活不易,码农辛苦
如果您觉得本网站对您的学习有所帮助,可以手机扫描二维码进行捐赠