我想将 anyHOST.anyTLD 重定向到 www.anyHOST.anyTLD

发布于 2024-11-05 18:01:34 字数 160 浏览 0 评论 0原文

我正在尝试找到一个足够通用的 modrewrite 规则,该规则将完成以下操作:

将 anyHost.anyTld 重定向到 www.anyHost.anyTld 不要与任何其他子域混淆,例如 other.anyHost.anyTLD 应该单独保留 你能帮忙吗?这会使服务器速度减慢太多吗?

I'm trying to find a generic enough modrewrite rule that will acomplish following:

Redirect anyHost.anyTld to www.anyHost.anyTld
Not mess with any other subdomains, for examle other.anyHost.anyTLD should be left alone
Can you help? Does this slow down server too much?

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

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

发布评论

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

评论(1

念﹏祤嫣 2024-11-12 18:01:34

这应该有效:

RewriteCond %{HTTP_HOST} ^([^.]+\.[^.]+)$ [NC]
RewriteRule ^(.*)$ http://www.%1/$1 [R=301,L]

我不是 mod_rewrite 速度(或缺乏速度)方面的专家,但我认为您不会注意到对速度的任何影响。

This should work:

RewriteCond %{HTTP_HOST} ^([^.]+\.[^.]+)$ [NC]
RewriteRule ^(.*)$ http://www.%1/$1 [R=301,L]

I'm no expert on the speed (or lack thereof) of mod_rewrite, but I don't think you would notice any impact on speed.

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