YII使用url组件美化管理的方法
本文实例讲述了yii使用url组件美化管理的方法。分享给大家供大家参考,具体如下:
urlmanager组件
yii的官方文档对此的解释如下:
urlsuffix 此规则使用的url后缀,默认使用curlmanger::urlsuffix,值为null。例如可以将此设置为.html,让url看起来“像”是一个静态页面。
casesensitive 是否大小写敏感,默认使用curlmanager::casesensitive,值为null。
defaultparams 该规则使用的默认get参数。当使用该规则来解析一个请求时,这个参数的值会被注入到$_get参数中。
matchvalue 当创建一个url时,get参数是否匹配相应的子模式。默认使用curlmanager::matchvalue,值为null。
如果该属性为 false,那么意味着当路由和参数名匹配给定的规则时,将以此来创建一个url。
如果该属性为true,那么给定的参数值夜必须匹配相应的参数子模式。
注意:将此属性设置为true会降低性能。
我们使用一些例子来解释网址工作规则。我们假设我们的规则包括如下三个:
array( 'posts'=>'post/list', 'post/<id:\d+>'=>'post/read', 'post/<year:\d{4}>/<title>'=>'post/read', )
调用$this->createurl('post/list')生成/index.php/posts。第一个规则适用。
调用$this->createurl('post/read',array('id'=>100))生成/index.php/post/100。第二个规则适用。
调用$this->createurl('post/read',array('year'=>2008,'title'=>'a sample post'))生成/index.php/post/2008/a%20sample%20post。第三个规则适用。
调用$this->createurl('post/read')产生/index.php/post/read。请注意,没有规则适用。
总之,当使用createurl生成网址,路线和传递给该方法的get参数被用来决定哪些网址规则适用。如果关联规则中的每个参数可以在get参数找到的,将被传递给createurl ,如果路线的规则也匹配路线参数,规则将用来生成网址。
如果get参数传递到createurl是以上所要求的一项规则,其他参数将出现在查询字符串。例如,如果我们调用$this->createurl('post/read',array('id'=>100,'year'=>2008)) ,我们将获得/index.php/post/100?year=2008。为了使这些额外参数出现在路径信息的一部分,我们应该给规则附加/* 。 因此,该规则post/<id:\d+>/* ,我们可以获取网址/index.php/post/100/year/2008 。
正如我们提到的,url规则的其他用途是解析请求网址。当然,这是url生成的一个逆过程。例如, 当用户请求/index.php/post/100 ,上面例子的第二个规则将适用来解析路线post/read和get参数array('id'=>100) (可通过$_get获得) 。
提示:此网址通过createurl方法所产生的是一个相对地址。为了得到一个绝对的url ,我们可以用前缀yii: :app()->hostinfo ,或调用createabsoluteurl 。
注:使用的url规则将降低应用的性能。这是因为当解析请求的url ,[ curlmanager ]尝试使用每个规则来匹配它,直到某个规则可以适用。因此,高流量网站应用应尽量减少其使用的url规则。
test.com/vthot 想生成 test.com/vthot/
要更改url格式,我们应该配置urlmanager应用元件,以便createurl可以自动切换到新格式和应用程序可以正确理解新的网址:
'urlmanager'=>array( 'urlformat'=>'path', 'showscriptname'=>false, 'urlsuffix'=>'.html', 'rules'=>array( 'posts'=>'post/list', 'post/<id:\d+>'=>array('post/show','urlsuffix'=>'.html'), 'post/<id:\d+>/<mid:\w+>'=>array('post/view','urlsuffix'=>'.xml'), ), ),
示例一
rule代码
action代码
输出
http://localhost/test/index.php/post
示例二
rule代码
action代码
输出
http://localhost/test/index.php/post/998.html?name=123
示例三
rule代码:
action代码
输出
http://localhost/test/index.php/post/998/tody.xml
示例四
rule代码
action代码:
echo $this->createabsoluteurl('look/host',array('user'=>'boy','mid'=>'ny-01')); echo ''; echo $this->createabsoluteurl('looks/host',array('user'=>'boy','mid'=>'ny-01'));
输出
http://boy.vt.com/look.me?mid=ny-01
http://localhost/test/index.php/looks/host/user/boy/mid/ny-01
1)controller/update/id/23
public function actionupdate(){ $id = yii::app()->request->getquery('id') ; 经过处理的$_get['id'] } //$id = yii::app()->request->getpost('id'); 经过处理的$_post['id'] //$id = yii::app()->request->getparam('id'); //chttprequest更多
2)public function actionupdate($id) 这种不支持多主键,会检查一下到底get里面有没有id,没有id就直接不允许访问
'sayhello/<name>' => 'post/hello', name是postcontroller actionhello($name)的参数 'post/<alias:[-a-z]+>' => 'post/view', domain/post/e文小写 其中:前面的alias是postcontroller actionview($alias)的参数 '(posts|archive)/<order:(desc|asc)>' => 'post/index', domain/posts/desc或domain/posts/asc '(posts|archive)' => 'post/index', domain/posts或domain/archive 'tos' => array('website/page', 'defaultparams' => array('alias' =>'terms_of_service')),
when the url is /tos, pass terms_of_service as the alias parameter value.
隐藏 index.php
还有一点,我们可以做进一步清理我们的网址,即在url中藏匿index.php 入口脚本。这就要求我们配置web服务器,以及urlmanager应用程序元件。
1.add showscriptname=>false
2.add project/.htaccess
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
3.开启rewrite
简单的说,在main.php中简单设置urlmanager,然后讲了3条规则,基本都覆盖到了。最后是隐藏index.php,请记住.htaccess位于index.php同级目录 ,而不是protected/目录。其他就简单了。
希望本文所述对大家基于yii框架的php程序设计有所帮助。
上一篇: 涉嫌无证驾驶