문제

I've used the CHTML::link() to create links however it doesn't seem to work for absolute URLs

My Code:

<?php echo CHtml::link(CHtml::image(Yii::app()->baseUrl.'/images/image.png'), array('/http://www.newsite.com/about/'));?>

The link returns the site baseUrl so it appears like this

http://currentsitecom/http://www.newsite.com/about/

Can anyone suggest why this doesn't work?

도움이 되었습니까?

해결책

The link shouldn't have / before http://

<?php echo CHtml::link(
    CHtml::image(Yii::app()->baseUrl.'/images/image.png'),
    array('http://www.newsite.com/about/')
);?>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top