0

我知道使用 url 重新重定向的概念,以便 2 个 url 映射到同一页面。有没有办法让网址在外观上保持不变?换句话说,用户去:

http://www.sitename.com/pagename.php

但他们被重定向到:

http://www.anothersite.com/pagename.php

用户仍然可以在其窗口中看到的位置:

http://www.sitename.com/pagename.php

4

1 回答 1

2

查看这篇文章Redirect Subdomain Using htaccess and Keep URL

您要调查的是 .htaccess 和 mod_proxy()

您还可以使用 PHP 复制内容

file_get_contents(" http://www.anothersite.com/pagename.php ");

并在 sitename.com 上打印出来

于 2013-04-11T13:34:53.200 回答