将 www 添加到 URL,但忽略 m。子域

发布于 2024-12-14 09:02:41 字数 284 浏览 0 评论 0原文

我的重写规则如下并且有效:

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

但是,它会将 m.website.com 重定向到 www.website.com。 有没有办法让它忽略 m.子域?我不希望移动网站为 www.website.com/mobile

I've got my rewrite rule below and it works:

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

However, it will redirect m.website.com to www.website.com.
Is there a way I can get it to ignore the m. subdomain? I don't want to have the mobile site be www.website.com/mobile

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

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

发布评论

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

评论(1

您可以使用另一个 RewriteCond 排除子域。

重写除“m”之外的所有子域:

RewriteCond %{HTTP_HOST} ^website.com$
RewriteCond %{HTTP_HOST} !^m.website.com$
RewriteRule ^(.*)$ http://www.website.com/$1 [R=301,L]

You can exclude the subdomain using another RewriteCond.

Rewrite all subdomains except 'm':

RewriteCond %{HTTP_HOST} ^website.com$
RewriteCond %{HTTP_HOST} !^m.website.com$
RewriteRule ^(.*)$ http://www.website.com/$1 [R=301,L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文