我有一个网站http://www.pulpybucket.com
我想将我的其他网站的内容合并(完全转移)到这个网站中。有没有办法通过重定向来做到这一点?并且不会损害我的网站?
答案1
你可以执行类似 iframe 重定向的操作(如下),但同意 Raystafarian 的观点,最好只是通过 FTP 将文件从一台服务器传输到另一台服务器。
<html><body><iframe frameborder="0" scrolling="no" width="100%" height="100%"
src="http://www.pulpybucket.com" name="redirect" id="redirect">
<p>IFrames are not supported by your browser.</p>
</iframe><br />
</body></html>