如何通过仅更改域名而保留其他 URL 参数来重定向 URL
我现在正在将我的网站迁移到新的主机和域,我想知道是否可以将输入旧网站的任何 URL 的任何人重定向到新网站,同时保留所有 URL 参数。例如:
当有人输入此网址 http://www.domainA.com/blog/?p=667
时,我希望他被重定向到 http://www.domainB.com/博客/?p=667
。
有什么方法可以通过添加一些 .htaccess 配置来做到这一点吗?
谢谢!
I'm now migrating my website to a new host and domain, and I want to know if I can redirect anyone who enters any URL of the old website to the new website, while keeping all of the URL parameters. for example:
When somebody types in this url http://www.domainA.com/blog/?p=667
, I want him to be redirected to http://www.domainB.com/blog/?p=667
.
Is there any way I can do that by adding some .htaccess configurations?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的 .htaccess 文件中尝试此操作:
这将在从域 A 重定向到域 B 时保留您的 URI。
Try this in your .htaccess file:
This will preserve your URI while redirecting from domainA to domainB.