将 URL 重定向到新 URL

发布于 2024-11-01 14:21:38 字数 272 浏览 3 评论 0原文

如何将所有流量从 test/(.*) 重定向到 http://newdomain.com/test/ 1 美元?我尝试了这个,但是不起作用: RewriteRule ^test/(.*) http://domain.com/test/(.*) com/test/$1 [R=301,L]

How do I redirect all traffic from test/(.*) to http://newdomain.com/test/$1? I tried this, but that didn't work: RewriteRule ^test/(.*) http://domain.com/test/$1 [R=301,L]

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

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

发布评论

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

评论(2

掩饰不了的爱 2024-11-08 14:21:39

在重写规则之前添加行 RewriteEngine On

Add the line RewriteEngine On before your rewrite rule.

歌入人心 2024-11-08 14:21:38

我认为,您需要在规则的开头添加斜杠:

RewriteRule ^/test/(.*) http://domain.com/test/$1 [R=301,L]

I think, you need to add a slash to the beginning of the rule:

RewriteRule ^/test/(.*) http://domain.com/test/$1 [R=301,L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文