具有 2 个不同域的相同子域
我有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,使用 .htaccess 文件肯定会让您轻松完成。您可以在 .htaccess 文件中尝试一下吗:
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:
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.