yii的方法createurl生成路径问题
发现用 $this->createurl('index/archives') 后成的路径是相对的这种 。 不是 www.xxxx.com/ 绝对的这种。请问一下有什么方法让 createurl生成绝对的吗?我在网上找了好久都没有找到方法
------解决方案--------------------
使用createabsoluteurl()就可以了。
$route = 'index/archives';
$params=array();
$url=$this->createabsoluteurl($route,$params);
http://www.yiiframework.com/doc/api/1.1/ccontroller#createabsoluteurl-detail