Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
目前,当我尝试在我的 PHP 代码中导航到不同网站的 URL 时,我的项目只是将我发送到:
http://localhost/mysite/www.desiredURL.com
如何在“我的网站”之外导航?
听起来您在链接中缺少协议。你可能有:
<a href="www.desiredURL.com">link</a>
代替
<a href="http://www.desiredURL.com">link</a>