Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果提供的 url 包含特定的子字符串,我想编写一个 apache 重定向规则来重定向。例如,假设用户使用 url 访问服务器http://bloop1.toop.com。我想将它们重定向到http://bloop2.toop.com. 从网上环顾四周,我写了一条类似以下的规则:
http://bloop1.toop.com
http://bloop2.toop.com
RewwriteRule .+bloop1 http://bloop2.toop.com
但这不起作用。任何帮助将不胜感激。
您还可以创建 DNS CNAME 条目以将 bloop1.toop.com 子域指向 bloop2.toop.com。如果您要看到该特定子域的大量流量,这可能更可取,因为它将工作负载从您的网络服务器转移到客户端的 DNS 查找。