0

目前,当我尝试在我的 PHP 代码中导航到不同网站的 URL 时,我的项目只是将我发送到:

http://localhost/mysite/www.desiredURL.com

如何在“我的网站”之外导航?

4

1 回答 1

1

听起来您在链接中缺少协议。你可能有:

<a href="www.desiredURL.com">link</a>

代替

<a href="http://www.desiredURL.com">link</a>
于 2013-11-13T21:22:18.520 回答