链接到外部 URL - 目前不成功
当我尝试链接一个外部网址(例如 www.facebook.com
)时,它当前显示为 -
mysite.com/music/www.facebook.com
链接:
如何使其工作?
When I try link a ext Url such as www.facebook.com
it currently comes as -
mysite.com/music/www.facebook.com
Its linked: <a href="www.facebook.com></a>
as i link internal urls like <a href=./index.html>
etc etc
How to make it work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我假设你正在谈论 HTML。您需要完整的 URL,例如
http://www.example.com
,而不仅仅是www.example.com
。I assume you're talking about in HTML. You need the full URL, e.g.
http://www.example.com
, not justwww.example.com
.尝试在 URL 中添加
http://
前缀:http://stackoverflow.com/faq
您可能会发现 HTML 4.01 规范 有趣的阅读。 (可能不是。但请注意页面底部的
12.4.1 相对 URI
部分。:)Try adding an
http://
prefix to your URLs:http://stackoverflow.com/faq
You might find the HTML 4.01 specification interesting reading. (Probably not. But pay attention to the
12.4.1 Relative URIs
section at the bottom of the page. :)