К сожалению, я не вижу решения относительно сохранения вашего домена. Вот соответствующий код для создания страницы для перенаправления на ваш сайт.
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Refresh" content="10;URL=http://www.unixnerd.co.uk">
<meta charset="UTF-8">
<title>NEW ADDRESS</title>
<meta name="description" content="Our site has moved to a new address. Please note the change of address." >
<!-- Mobile Specific Meta -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--[if IE]><meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'><![endif]-->
<link href='http://fonts.googleapis.com/css?family=Noto+Sans:400,700' rel='stylesheet' type='text/css'>
<style>
body{
font-family: 'Noto Sans', Arial, serif;
font-weight: 400;
-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale;
line-height: 1.618em;
background: #464646 url('car1.jpg') center center no-repeat fixed;
background-size: cover;
}
h2{
font-family: 'Noto Sans', Arial, serif;
font-weight: 700;
font-size:40px;
line-height: 1.618em;
}
section{
max-width:800px;
margin:8% auto 1em auto;
background-color:#222;
opacity: 0.8;
filter: alpha(opacity=80); /* For IE8 and earlier */
color:#fff;
padding:1em 5%;
}
a{
color: #00CC66;
}
a:focus{
outline:none;
outline-offset:inherit;
}
@media (max-device-width: 1027px) {
body{
text-align:center;
font-size:larger;
}
section{
max-width: 90%;
}
}
@media (max-device-width: 640px) {
section{
max-width: 97%;
}
}
</style>
</head>
<body>
<section>
<h2>Our Site has moved!</h2>
<h3>The service you want to use can be reached at <a href="www.unixnerd.co.uk">www.unixnerd.co.uk</a></h3>
<h3>...You will be transferred to the new site in a moment...</h3>
<p>If you have waited more than a few seconds and you are still seeing this message, please click on the link above! Thank you.</p>
</section>
</body>
</html>
на заметку * 1. загрузите изображение из https://www.pexels.com/search/website%20background/ 2. поместите изображение в тот же каталог, что и ваш индексный файл (где находится этот код html) 3. под тегами стилей найдите
font-family: 'Noto Sans', Arial, serif;
font-weight: 400;
-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale;
line-height: 1.618em;
background: #464646 url('car1.jpg') center center no-repeat fixed;
background-size: cover;
}
и измените background: #464646 url('car1.jpg') center center no-repeat fixed;
на имя Файл изображения, который вы скачали, и его расширение.
Это должно автоматически перенаправить на вашу страницу через десять секунд, но при этом сохранить профессиональную целостность.