So you changed your URL and wondering how to automatically redirect your visitors to the new location. Simply put the following HTML tag in-between <HEAD> and </HEAD> tags:
<HTML><meta http-equiv="refresh"
content="<delay before redirecting>;
URL=<URL>">
<HEAD>
<TITLE>I moved!!!</TITLE>
<META HTTP-EQUIV="refresh" CONTENT="10;URL=http://my.newplace.com/">
</HEAD>
<BODY>
I moved to a new place.
Your browser should automatically take you there in 10 seconds. If it doesn't plase go to http://my.newplace.com/
</BODY>
</HTML>

No comments:
Post a Comment