如何在同一页面上将访问者从旧域重定向到新域?

发布于 2024-12-15 18:11:27 字数 258 浏览 0 评论 0原文

我刚刚将我的网站转移到新域,我想将旧域上的访问者重定向到同一页面上的新域。 例如: 如果有人访问 www.myolddomain.com/123.html 它应该将他重定向到 www.mynewdomain.com/123.html

我怎样才能做到这一点? 我的所有代码都是 PHP 的 是否需要使用 .htaccess 和重写规则? 我的旧域名有这个重写规则 <代码> RewriteRule (.*).html$ /real.php?id=$1

I just transferred my site to new domain and I want to redirect visitors on old domain to new domain on the same page.
For example:
If someone visit www.myolddomain.com/123.html
It should redirect him to the
www.mynewdomain.com/123.html

How I can do that?
My all code is in PHP
Does it require use of .htaccess with rewrite rule?
I have this rewrite rule on my old domain

RewriteRule (.*).html$ /real.php?id=$1

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

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

发布评论

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

评论(3

对你的占有欲 2024-12-22 18:11:27

简单的重定向会更容易。对于 www.myolddomain.com 的虚拟主机配置

Redirect permanent / http://www.mynewdomain.com/

A simple redirect would be easier. For the virtual host config for www.myolddomain.com

Redirect permanent / http://www.mynewdomain.com/
喜爱纠缠 2024-12-22 18:11:27

执行此操作的自然方法是更改​​ DNS 中的条目。

The natural way to do this is change entry in DNS.

把时间冻结 2024-12-22 18:11:27

最简单的就是 Jquery
$(窗口).load(
function() {window.location = "http://newdomain.com/";});

simples of that is Jquery
$(window).load(
function() {window.location = "http://newdomain.com/";});

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