gpt4 book ai didi

.htaccess - 仅使用特定域重定向

转载 作者:行者123 更新时间:2023-12-05 00:21:43 24 4
gpt4 key购买 nike

我有一个包含 2 个不同域的网站,例如:

www.example.com
www.example.net


现在我想要,来自 的每个用户example.com 应该重定向到 www.example.de

我试过:

RewriteEngine On
RewriteCond %{HTTP_HOST} !^example\.com$
RewriteRule ^.*$ http://example.de/$0 [L,QSA,R=301]

但现在仍然是 的所有用户example.net 被重定向到 example.de

我该如何解决这个问题,只有来自 的用户example.com 被重定向(也包括所有子文件夹)。

谢谢!

最佳答案

试试这个 - 你想匹配example.com(删除!),将传入的url捕获到$ 1中更清晰。

RewriteEngine On
RewriteCond %{HTTP_HOST} ^example\.com$
RewriteRule ^(.*)$ http://example.de/$1 [L,QSA,R=301]

另外,在调试时,更改 R=301R ,因此您的浏览器不会“坚持”旧规则。生效后改回 R=301

关于.htaccess - 仅使用特定域重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31145847/

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