I’m doing the following:
<?php echo $this->Html->link('click here', 'www.notw.com', array('target' => '_blank')); ?>
Still, the created points to: mysite.local/current_controller/www.notw.com
How can I make my link to work properly for externals?
Thx
Perhaps you should try
http://www.notw.cominstead of justwww.To resolve this w/o the protocol ie. http or https just add
//before url and it will auto resolve the protocol for you.