当我点击锚标签时重新引导网站

时间:2014-02-11 06:38:32

标签: php oscommerce

嗨,我想将我的页面重定向到另一个网站,我使用了锚标签但是当我点击这个时它会添加我的网站名称 http://au.pricecomparereview.com/www.theiconic.com.au/Rococo-Textured-Mini-Skirt-113532.html

请告诉我这件事。我是php的新手我正在使用oscommerce

www.theiconic.com.au/Rococo-Textured-Mini-Skirt-113532.html

3 个答案:

答案 0 :(得分:2)

像这样使用,你可能会错过http://

<a href="http://www.theiconic.com.au/Rococo-Textured-Mini-Skirt-113532.html" target="_blank">www.theiconic.com.au</a>

答案 1 :(得分:1)

我认为你的锚标签现在会是这样的:

<a href="www.theiconic.com.au/Rococo-Textured-Mini-Skirt-113532.html" target="_blank">www.theiconic.com.au</a>

将其更改为

<a href="//www.theiconic.com.au/Rococo-Textured-Mini-Skirt-113532.html" target="_blank">www.theiconic.com.au</a>

它会正常工作。

答案 2 :(得分:1)

如果您想要PHP方法,请尝试以下方法:

// Declare url variable
$url = "http://www.theiconic.com.au/Rococo-Textured-Mini-Skirt-113532.html";

// Use it to create the <a> with php
echo "<a href="$url" target="_blank">www.theiconic.com.au</a>";

或者使用html使用PHP assing标签:

<a href="<?=$url ?>" target="_blank">www.theiconic.com.au</a>