如何通过仅更改域名而保留其他 URL 参数来重定向 URL

发布于 2024-11-06 11:08:31 字数 257 浏览 0 评论 0原文

我现在正在将我的网站迁移到新的主机和域,我想知道是否可以将输入旧网站的任何 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 技术交流群。

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

发布评论

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

评论(1

美人如玉 2024-11-13 11:08:31

在您的 .htaccess 文件中尝试此操作:

Options +FollowSymlinks -MultiViews
RewriteEngine on

# for http
RewriteCond %{HTTP_HOST} ^(www\.)?domainA\.com$ [NC]
RewriteCond %{SERVER_PORT} =80
RewriteRule ^(.*)$ http://www.domainB.com/$1 [R=301,L]

# for https
RewriteCond %{HTTP_HOST} ^(www\.)?domainA\.com$ [NC]
RewriteCond %{SERVER_PORT} =443
RewriteRule ^(.*)$ https://www.domainB.com/$1 [R=301,L]

这将在从域 A 重定向到域 B 时保留您的 URI。

Try this in your .htaccess file:

Options +FollowSymlinks -MultiViews
RewriteEngine on

# for http
RewriteCond %{HTTP_HOST} ^(www\.)?domainA\.com$ [NC]
RewriteCond %{SERVER_PORT} =80
RewriteRule ^(.*)$ http://www.domainB.com/$1 [R=301,L]

# for https
RewriteCond %{HTTP_HOST} ^(www\.)?domainA\.com$ [NC]
RewriteCond %{SERVER_PORT} =443
RewriteRule ^(.*)$ https://www.domainB.com/$1 [R=301,L]

This will preserve your URI while redirecting from domainA to domainB.

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