Redirect website using refresh Meta Tag in html

Normally all servers read index.html as first file on web site. You can use following code to redirect your site to some different site.

For example consider that your site is http://abc.com and if somebody visits http://abc.com then it should be automatically redirected to http://xyz.com

You can do this by editing index.html file in http://abc.com website as below.

<html>
<head>
<meta http-equiv="refresh" content="0;url=http://xyz.com/" />
</head>
</html>