- Switch the theme to classic
- select option for the backup and change
- change the code give below and pastes in the HTML editor
<html>
<head>
<title>Redirecting... BLOGNAME</title>
<script>
var url = "{NEW BLOG URL}/";
var str = window.location.href.split('?')[0];
var res = str.split("blogspot.com/");
if( null != res[1] ) {
var restPart = res[1].split(".");
if( null != restPart[0] ) {
url = url+restPart[0];
}else {
url = url+res[1];
}
}
<MainOrArchivePage> window.location.href="{NEW BLOG URL}/"; </MainOrArchivePage>
<Blogger>
<ItemPage>
window.location.href=url;
</ItemPage>
</Blogger>
</script>
<MainPage>
<link rel="canonical" href="{NEW BLOG URL}/" />
</MainPage>
<Blogger>
<ItemPage>
<link rel="canonical" href="{NEW BLOG URL}/" />
</ItemPage>
</Blogger>
</head>
<body>
</body>
</html>