我必须在我的网站上显示如下链接:
$url = 'google.com';
<a href="<?php echo $url; ?>">Check it !</a>
我现在不明白的是,输出href不是google.com
而是mydomain.com/google.com
。
我不知道如何解决这个问题。
答案 0 :(得分:3)
您需要在网址
之前附加 http://尝试以下代码:
$url = 'http://www.google.com';
<a href="<?php echo $url; ?>">Check it !</a>
答案 1 :(得分:3)
请将此代码用于网站网址。
disableconnectionsharing:i:1
如果您没有添加http,那么它会打开您的域名,然后是您的$ url变量名称,所以请在您的网址中添加http。