I currently have a customer page that I urgently want to redirect to the new page on the new hosting with a frame forwarding. The reason for this is that the old hosting is no longer working properly, but unfortunately I have not yet received an authcode for the move from the hoster. So that the visitors still get the new website displayed, but don't see a strange URL with test-something, I use a frame forwarding in which the main domain always remains at the top of the URL line.
I do not enter meta descriptions or meta keywords in the code, since such a forwarding should only remain active for a few days anyway. After that, there is a risk that Google will remove the main domain from the index and instead list the domain to which you are forwarded. That would of course be less seo-technically adept. So do not use this type of redirection as a permanent solution.
You can copy the following HTML code for your project and then adjust the entries for the URL and the title tag:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Sinnvollen Title eintragen</title>
</head>
<frameset rows="100%">
<frame src="http://www.neue-url.de" title="" frameborder="0" noresize="noresize"/>
<noframes>
<body>
<a href="http://www.neue-url.de">http://www.neue-url.de</a>
</body>
</noframes>
</frameset>
</html>
Jens has been running the blog since 2012. He appears as Sir Apfelot for his readers and helps them with problems of a technical nature. In his free time he drives electric unicycles, takes photos (preferably with his iPhone, of course), climbs around in the Hessian mountains or hikes with the family. His articles deal with Apple products, news from the world of drones or solutions for current bugs.