gpt4 book ai didi

regex - 带有通配符和问号的 Apache Rewrite 问题

转载 作者:行者123 更新时间:2023-12-02 04:59:07 27 4
gpt4 key购买 nike

所以我的问题是尝试重定向一组 URL

下方

http://my.domain.com/team+2+name/?section=football

www.domain.com

我尝试了很多变体,但我无法完全得到我想要的。

我得到的最远的是

RewriteCond %{HTTP_HOST} my.domain.com/* [NC]
RewriteRule . http://www.domain.com [R=301,NC]

但这仍然会在 URL 中留下 ?section=football

非常感谢任何帮助

最佳答案

试试这段代码:

RewriteCond %{HTTP_HOST} $my\.domain\.com$ [NC]
RewriteRule ^team.+?name$ http://www.domain.com? [R=301,L,NC]

? 最后将去除任何现有的查询字符串。

关于regex - 带有通配符和问号的 Apache Rewrite 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18513018/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com