访问 localhost/somewebsite.com ,为什么?
我想打开 somewebsite.com ,但它转到 localhost/somewebsite.com ,为什么它采用相对路径。
I want to open somewebsite.com , but it goes to localhost/somewebsite.com , why its taking relative path.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的链接在 URL 开头缺少协议:
http://
表示不使用 SSL 的页面,https://
表示使用 SSL 保护数据传输的页面。如果您想要一个适用于任一场景的链接,您可以使用
//
而不是完全限定协议。Your link is missing the protocol at the start of the URL:
http://
for pages not using SSL,https://
for pages securing data transfer using SSL.If you want a link that works in either scenario, you can use
//
instead of the fully qualified protocol.