我已经使用CHTML :: link()来创建链接,但它似乎不适用于绝对URL
我的代码:
<?php echo CHtml::link(CHtml::image(Yii::app()->baseUrl.'/images/image.png'), array('/http://www.newsite.com/about/'));?>
该链接返回网站baseUrl,因此它显示为
http://currentsitecom/http://www.newsite.com/about/
有谁能说明为什么这不起作用?
答案 0 :(得分:0)
该链接在/
http://
<?php echo CHtml::link(
CHtml::image(Yii::app()->baseUrl.'/images/image.png'),
array('http://www.newsite.com/about/')
);?>