使用通配符包重定向拼写错误的子域

发布于 2024-12-11 05:34:47 字数 260 浏览 0 评论 0原文

我已将 x.domain.com 设置为服务器上拼写错误的子域的包罗万象。例如,我希望partners.domain.com重写为partner.domain.com。我很难弄清楚如何制定所有这些重写规则。我相信我的大脑在 .htaccess 中没有正确思考,但我只想说“如果 url 是partners.domain.com,则重写为partner.domain.com”。对于没有特定模式的不同拼写错误(以及许多不同的子域),我可能需要制定大约 20 条左右的规则。

我很感激你的帮助!

I have setup x.domain.com as a catchall for misspelled subdomains on my server. For instance, I want partners.domain.com to rewrite to partner.domain.com. I am having a difficult time figuring out how to make all of these rewrite rules. I believe my brain doesn't properly think in .htaccess, but what I simply want to say is "if the url is partners.domain.com, rewrite to partner.domain.com". I probably have about 20 or so of these rules to make, for different misspellings that have no specific pattern (and for many different subdomain).

I appreciate the help!

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

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

发布评论

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

评论(1

吾家有女初长成 2024-12-18 05:34:47

您需要为每个拼写错误进行其中之一:

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

如果要重定向并保留任何 GET 查询参数,请在 RewriteRule 行的方括号中添加“QSA”:[R=301,L,QSA]

You'd need to make one of these for each mispelling:

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

add a "QSA" in the square brackets in the RewriteRule line if you want to redirect and preserve any GET query parameters: [R=301,L,QSA]

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