@font-face 无法在镜像站点上工作

发布于 2024-10-09 12:04:25 字数 298 浏览 5 评论 0原文

我有一个安装了 WordPress 的网站 http://lifebridgecypress.org,然后我也有 http://lifebridgecypress.com,它镜像 .org 网站。正如您所看到的,.com 网站的 @font-face 规则不起作用。

有人知道如何让它发挥作用吗?

I have a wordpress installed site at http://lifebridgecypress.org, and then I also have http://lifebridgecypress.com, which mirrors the .org site. As you can see, the .com site's @font-face rules are not working.

Does anyone know a way to get this to work?

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

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

发布评论

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

评论(3

沙沙粒小 2024-10-16 12:04:25

要将 .com 重定向到 .org,.htaccess 中的类似内容应该可以解决问题。需要 mod_rewrite(您的网站似乎已启用)。

RewriteEngine on
RewriteCond %{http_host} ^(www\.)?lifebridgecypress\.com$ [NC]
RewriteRule ^(.*)$ http://lifebridgecypress.org/$1 [R=301,NC,L]

To redirect .com to .org, something along these lines in a .htaccess should do the trick. Requires mod_rewrite (which appears to be enabled on your sites).

RewriteEngine on
RewriteCond %{http_host} ^(www\.)?lifebridgecypress\.com$ [NC]
RewriteRule ^(.*)$ http://lifebridgecypress.org/$1 [R=301,NC,L]
最终幸福 2024-10-16 12:04:25

在我看来,这两个网站在 Safari5/Mac 中看起来是一样的。

The two sites look identical to me in Safari5/Mac.

顾北清歌寒 2024-10-16 12:04:25

只需在您的域名注册商(看起来像 Dreamhost)将 lifebridgecypress.com 域名转发到 lifebridgecypress.org,这样您就只有一个站点可以托管和管理。这样你也不会因为重复的内容而被谷歌降低排名。

Simply domain forward lifebridgecypress.com to lifebridgecypress.org at your domain registrar (looks like Dreamhost) so you only have one site to host and administer. And then you don't get down ranked by Google for duplicate content, either.

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