直接访问 CDN 域时从 CDN 重定向到主网站?

发布于 2024-10-14 14:18:37 字数 219 浏览 4 评论 0原文

我不太确定如何防止谷歌将我的 CDN 域与我的主域名混合索引。我想在直接访问 CDN 域时通过 .htaccess 重定向到主域。

事实:

  1. 两个域都指向文件系统中的同一位置。
  2. 两者共享相同的 robots.txt
  3. CDN 域:cdn.example.com
  4. 主域:example.com

谢谢。

I'm not quite sure how to prevent google from indexing my CDN domain in mix with my Primary domain name. I would like to redirect to Primary domain via .htaccess on dirrect access to CDN domain.

Facts:

  1. Both domains point to the same place in file sistem.
  2. Both share same robots.txt
  3. CDN domain: cdn.example.com
  4. Primary domain: example.com

Thanks.

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

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

发布评论

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

评论(2

尸血腥色 2024-10-21 14:18:37

以下重写规则会将任何对 cdn.example.com 的请求重定向到 example.com:

RewriteEngine On
RewriteCond %{HTTP:Host} =cdn.example.com
RewriteRule (.*) http://example.com/$1 [R=301,L,QSA]

The following rewrite rules will redirect any request to cdn.example.com to example.com:

RewriteEngine On
RewriteCond %{HTTP:Host} =cdn.example.com
RewriteRule (.*) http://example.com/$1 [R=301,L,QSA]
↘人皮目录ツ 2024-10-21 14:18:37

我不知道有任何 CDN 明确支持这种类型的重定向,但我猜测其中很多都支持。

如果您的 CDN 没有,那么您能做的最好的事情就是在其中放置一个带有重定向标头的 index.html 文件——这根本不是一个糟糕的解决方案。

<html>
  <head>
    <meta http-equiv="refresh" content="0;url=http://primarydomain.com/" />
  </head>
  <body>
  </body>
</html>

搜索引擎甚至会认为这是一个正确的301..

I don't know of any CDN's explicitly supporting this type of redirect, but my guess is that many of them do.

If your CDN does not, then the best you can do is put an index.html file there with a redirect header -- and this isn't a bad solution at all.

<html>
  <head>
    <meta http-equiv="refresh" content="0;url=http://primarydomain.com/" />
  </head>
  <body>
  </body>
</html>

Search engines will even consider this a proper 301.

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