重定向域而不托管服务器

时间:2016-03-10 17:18:35

标签: dns web-hosting

我有一个网站,我们称之为“olddomain.com”。 我买了新域名,我们称之为“newdomain.com” 我想做的是让newdomain.com重定向到olddomain.com/subdir,而无需在新的网络托管服务器上托管newdomain.com。这可行吗?

2 个答案:

答案 0 :(得分:0)

您可以在域控制面板的帮助下执行此操作。可以通过域控制面板选择域转发。不需要购买托管。

using domain forwarding option in domain control pabel you can redirect your newdomain.com to olddomain.com/subdir

答案 1 :(得分:-1)

尝试将文件放在newdomain.com中,调用方式为:

的index.php

<?php 
header("Location: http://olddomain.com/subdir");
exit(0);
?>

的index.asp

<%
Response.Redirect("http://olddomain.com/subdir")
%>