如何在同一页面上将访问者从旧域重定向到新域?
我刚刚将我的网站转移到新域,我想将旧域上的访问者重定向到同一页面上的新域。 例如: 如果有人访问 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
简单的重定向会更容易。对于 www.myolddomain.com 的虚拟主机配置
A simple redirect would be easier. For the virtual host config for www.myolddomain.com
执行此操作的自然方法是更改 DNS 中的条目。
The natural way to do this is change entry in DNS.
最简单的就是 Jquery
$(窗口).load(
function() {window.location = "http://newdomain.com/";});
simples of that is Jquery
$(window).load(
function() {window.location = "http://newdomain.com/";});