使用通配符包重定向拼写错误的子域
我已将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要为每个拼写错误进行其中之一:
如果要重定向并保留任何 GET 查询参数,请在 RewriteRule 行的方括号中添加“QSA”:
[R=301,L,QSA]
You'd need to make one of these for each mispelling:
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]