Hi,
I have an external URL in my footer. Here’s the code i use to geneate the URL echo CHtml::link(‘Go here’, “www.gohere.com”); … pretty straight forward? Apparently not…Yii goes on to convert the URL to an internal one by attaching a prefix so that it becomes http: //localhost/myapp /www.gohere.com …which is obviously wrong. How do I get the framework not to change my URL?
Thanks.