编写用于多个域的链接的正确方法

发布于 2024-10-29 18:56:53 字数 348 浏览 1 评论 0原文

如果我有多个域都指向同一个网站,您应该如何编写链接,以便它们在通过不同域使用时不会中断,例如

我对同一个网站有以下域

oshirowanen.com
oshiro_wanen.com
osh.i.ro.wa.nen.com

想象一下,如果我有一个 html 链接, 如下

<img src="http://www.oshirowanen.com/images/me.jpg" />

仅当用户访问 oshirowanen.com 时才会显示。

应该如何正确完成该 img 标签,使其适用于所有 3 个域?

If I have multiple domains all pointing to the same website, how are you supposed to write your links so they do not break when used via a different domain, .e.g

Imagine I have the following domains for the same website

oshirowanen.com
oshiro_wanen.com
osh.i.ro.wa.nen.com

if I had a html link as follows

<img src="http://www.oshirowanen.com/images/me.jpg" />

That would only be displayed if users went to oshirowanen.com.

How should that img tag be done properly so it works on all 3 domains?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

奈何桥上唱咆哮 2024-11-05 18:56:53

只是

 

Just

 <img src="/images/me.jpg" />
毁梦 2024-11-05 18:56:53

像这样: ,src 来自访问该页面的任何域的根目录。

Like this: <img src="/images/me.jpg" />, the src is from the root of whatever domain that page is accessed from.

要走就滚别墨迹 2024-11-05 18:56:53

如果您的所有域都指向相同的索引,那么您可以只使用相对路径

<img src="images/me.jpg"/>

If all your domains point to the same index, then you can just use relative paths

<img src="images/me.jpg"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文