具有 2 个不同域的相同子域

发布于 2024-10-27 17:02:17 字数 223 浏览 2 评论 0原文

我有 2 个域。例如,domain1.com 和domain2.com。 domain1.com 有许多子域。比如,sub1.domain1.com、sub2.domain1.com 等等...

我需要以从 *.domain2.com/ 重定向的方式映射domain2.com?到 *.domain1.com/?

我需要使用 htaccess 吗?如果是,怎么办?

-提前致谢 :)

I have 2 domains. say, domain1.com and domain2.com.
domain1.com has many sub-domains. say, sub1.domain1.com, sub2.domain1.com and so on...

I need to map domain2.com in such a way that its redirected from *.domain2.com/? to *.domain1.com/?

do i need to use htaccess? if yes, how?

-thanks in advance :)

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

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

发布评论

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

评论(1

ぃ双果 2024-11-03 17:02:17

是的,使用 .htaccess 文件肯定会让您轻松完成。您可以在 .htaccess 文件中尝试一下吗:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^(.*\.?)domain2\.com$  [NC]
RewriteRule (.*) http://%1domain1.com/$1 [R=301,L]

sub1.domain2.com/foo 形式的 URL 将被重定向到 sub1.domain1.com/foo ,这会将带有新 URL 的 http 状态代码=301 发送到浏览器。

Yes using .htaccess file will definitely make it easy for you. Can you try this in you .htaccess file:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^(.*\.?)domain2\.com$  [NC]
RewriteRule (.*) http://%1domain1.com/$1 [R=301,L]

A URL of the form sub1.domain2.com/foo will be redirected to sub1.domain1.com/foo and this will send http status code=301 with the new URL to browser.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文