How To Redirect Blog / Website To New Website Address – Redirect URL – Auto Redirect
Ways To Redirect Blog / Website To New Website Address – Redirect URL – Auto Redirect: redirect URL to another, my blog redirects to another site. Redirect Blog / Website To New Website Address – Redirect URL – Auto Redirect.
Table of Contents
How To Redirect Blog / Website To New Website Address – Redirect URL – Auto Redirect Guide
Method 1:
Redirect by writing the domain name directly on the old website to let users know that they have moved to the new site
Method 2:
Use the HTML’s meta tag:
<meta http-equiv=”refresh” content=”5;url=https://icthack.com/”/>
Method 3:
<html><head><script type=”text/javascript”>function delayer(){window.location = “https://icthack.com”}</script></head><body onLoad=”setTimeout(‘delayer()’, 15000)”><h2>Prepare to be redirected after 15 second(s)!</h2></body></html>
Method 4:
<?xml version=”1.0″ encoding=”UTF-8″ ?><!DOCTYPE html><html b:version=’2′ class=’v2′ expr:dir=’data:blog.languageDirection’ xmlns=’http://www.w3.org/1999/xhtml’ xmlns:b=’https://www.google.com/2005/gml/b’ xmlns:data=’https://www.google.com/2005/gml/data’ xmlns:expr=’https://www.google.com/2005/gml/expr’><head><script type=”text/javascript”>var time = 5; //How long (in seconds) to countdownvar page = “https://icthack.com/”; //The page to redirect tofunction countDown(){time–;gett(“container”).innerHTML = time;if(time == -1){window.location = page;}}function gett(id){if(document.getElementById) return document.getElementById(id);if(document.all) return document.all.id;if(document.layers) return document.layers.id;if(window.opera) return window.opera.id;}function init(){if(gett(‘container’)){setInterval(countDown, 1000);gett(“container”).innerHTML = time;}else{setTimeout(init, 50);}}document.onload = init();</script><meta content=’IE=EmulateIE7′ http-equiv=’X-UA-Compatible’/><b:if cond=’data:blog.isMobile’><meta content=’width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0′ name=’viewport’/><b:else/><meta content=’width=1100′ name=’viewport’/></b:if><b:include data=’blog’ name=’all-head-content’/><title><data:blog.pageTitle/></title><b:skin><![CDATA[]]></b:skin></head><body><center><h1> Redirect icthack</h1></center><h2>redirect later <span id=”container”></span> second(s)!</h2><div style=’margin-top:300px; ‘><center><p class=’author’>© <b>Copyright by </b><a href=’https://icthack.com/’> icthack </a></p></center></div><b:section class=’navbar’ id=’navbar’ maxwidgets=’1′ showaddelement=’no’/></body></html>
Method 5:
<script src=’https://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js’ type=’text/javascript’/><script>function Redirect(){var currentURL = window.location.href;var url = currentURL .replace("icthackblog.blogspot.com","icthack.com");window.location=url;}$(document).ready(function(){var currentURL = window.location.href;var url = currentURL .replace("icthackblog.blogspot.com","icthack.com");$(“”).html(“”);setTimeout(‘Redirect()’, 1);});</script>
What is a URL Redirect?
A URL redirect is a way to remap a web page address. It’s quite similar to how the post office handles a change of address. You send your new address to the post office. Whenever someone sends you mail, the post office forwards the mail to the new address and lets the sender know of the new address.
The same thing happens on the web. The information is still there but on a new page. A URL redirect tells search engine web crawlers where that information has now been placed.
Forwarding Multiple Domains
Many businesses buy several domain names similar to what they already own, to prevent competitors from “stealing” their name or brand. A redirect allows them to direct all searches to a single authority website.