删除CodeIgniter站点中一个链接的基本URL

时间:2012-05-02 14:30:04

标签: codeigniter hyperlink

CodeIgniter问题。我想在我的一个CI网站上添加外部链接,因此我不想包含基本网址。无论我做什么,我总是得到这样的东西:http://www.ourwayproj.net/index.php/www.yahoo.com。当我想要的只是这个:http://www.yahoo.com。如何从我要添加的这个链接中删除基本网址?

这是我要使用的标记:<a target="_blank" href=<?=$account->getUrl().".webbiz.biz";?>><img alt="moores78 (9K)" src="moores78.jpg" height="240" width="240" /></a>

2 个答案:

答案 0 :(得分:3)

评论中的漂亮答案;

对于外部链接,地址需要附加协议,例如 http://

<a target = "_blank" href = <?="http://".$account->getUrl().".webbiz.biz";?>

答案 1 :(得分:0)

我在我的项目中这样做并使用:

<a href="<?php echo 'http://' . $row->ip_address; ?>" target="_blank">Show</a>

它将生成存储在我的数据库中的IP地址

http://172.xx.xx.xx