My External Url Is Converted To A Local One

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.

Hi, try this

My link

I don’t think it’s Yii. “www.gohere.com” is treated as a relative URL in your browser. Try “http://www.gohere.com” instead .